Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rollup of 16 pull requests #138480

Merged
merged 39 commits into from
Mar 14, 2025
Merged
Changes from 1 commit
Commits
Show all changes
39 commits
Select commit Hold shift + click to select a range
0c10339
Overhaul examples for PermissionsExt
hkBst Jan 24, 2025
746b0f6
Sync Fuchsia target spec with clang Fuchsia driver
erickt Feb 11, 2025
4e703f5
docs(std): mention LazyLock in const/static HashMap construction
karolzwolak Mar 1, 2025
ffa86bf
Reword documentation about SocketAddr having varying layout
clarfonthey Jan 29, 2025
d39a258
Enable metrics and verbose tests in PR CI
Kobzol Mar 12, 2025
675ae1a
use `expect` instead of `allow`
onur-ozkan Mar 12, 2025
c8a6fcc
fix: remove the check of lld not supporting @response-file
weihanglo Mar 12, 2025
8bf33c2
Visit PatField when collecting lint levels
compiler-errors Mar 13, 2025
231627b
update error message
tshepang Mar 13, 2025
88b206d
atomic intrinsics: clarify which types are supported and (if applicab…
RalfJung Mar 12, 2025
36ff87e
EUV: fix place of deref pattern's interior's scrutinee
dianne Mar 13, 2025
3cf1a68
Add `doc_url` attribute to CI jobs
Kobzol Mar 13, 2025
aab643f
Fill `doc_url` for Rust for Linux and Fuchsia jobs
Kobzol Mar 13, 2025
6117644
Output job doc URL to allow Rust Log Analyzer to access it
Kobzol Mar 13, 2025
0c6d24e
Print job doc URL on job failure
Kobzol Mar 13, 2025
83ee034
Remove usage of legacy scheme paths on RedoxOS
bjorn3 Mar 13, 2025
2c76bf7
Remove an outdated line from a test comment
WaffleLapkin Mar 13, 2025
c88dfb2
Remove myself from libs review
cuviper Mar 13, 2025
abed12a
Add `src/tools/x` to the main workspace
cuviper Mar 7, 2025
66deb69
Alphabetize the root workspace members
cuviper Mar 7, 2025
8c91fae
Remove separate `src/tools/x` from rust-analyzer settings
cuviper Mar 10, 2025
496788a
Record the new settings checksums
cuviper Mar 10, 2025
43499bf
Remove has_redox_scheme
bjorn3 Mar 13, 2025
c62707e
Rollup merge of #136001 - hkBst:patch-21, r=cuviper
jhpratt Mar 14, 2025
595c624
Rollup merge of #136230 - clarfonthey:net-memory-layout-assumptions, …
jhpratt Mar 14, 2025
459352a
Rollup merge of #136892 - erickt:fuchsia-target, r=jieyouxu
jhpratt Mar 14, 2025
6ae5c8d
Rollup merge of #136911 - Kobzol:ci-helper-link, r=marcoieni
jhpratt Mar 14, 2025
936e51e
Rollup merge of #137870 - karolzwolak:lazylock-const-hashmaps-137566,…
jhpratt Mar 14, 2025
b9c33fa
Rollup merge of #138179 - cuviper:x, r=jieyouxu
jhpratt Mar 14, 2025
82d4ab6
Rollup merge of #138389 - onur-ozkan:use-expect, r=jieyouxu
jhpratt Mar 14, 2025
637f059
Rollup merge of #138396 - Kobzol:ci-metrics, r=marcoieni
jhpratt Mar 14, 2025
91e4bab
Rollup merge of #138398 - RalfJung:atomic-intrinsics-provenance, r=nn…
jhpratt Mar 14, 2025
e928a8f
Rollup merge of #138432 - weihanglo:lld, r=lqd
jhpratt Mar 14, 2025
fb2a7fa
Rollup merge of #138434 - compiler-errors:lint-level-pat-field, r=jie…
jhpratt Mar 14, 2025
7de35c8
Rollup merge of #138441 - tshepang:patch-5, r=jieyouxu
jhpratt Mar 14, 2025
f505572
Rollup merge of #138442 - dianne:deref-pat-euv-fix, r=compiler-errors
jhpratt Mar 14, 2025
f6fcae0
Rollup merge of #138457 - bjorn3:redox_scheme_paths, r=Noratrieb
jhpratt Mar 14, 2025
db022a8
Rollup merge of #138461 - WaffleLapkin:indate-comment, r=ehuss
jhpratt Mar 14, 2025
dea8a15
Rollup merge of #138466 - cuviper:libs-review, r=jieyouxu
jhpratt Mar 14, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Enable metrics and verbose tests in PR CI
Kobzol committed Mar 12, 2025
commit d39a25837dc5070d6c7079e94c46061c3f41a6af
19 changes: 5 additions & 14 deletions src/ci/run.sh
Original file line number Diff line number Diff line change
@@ -54,13 +54,8 @@ if [ "$FORCE_CI_RUSTC" == "" ]; then
DISABLE_CI_RUSTC_IF_INCOMPATIBLE=1
fi

if ! isCI || isCiBranch auto || isCiBranch beta || isCiBranch try || isCiBranch try-perf || \
isCiBranch automation/bors/try; then
RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --set build.print-step-timings --enable-verbose-tests"
RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --set build.metrics"
HAS_METRICS=1
fi

RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --set build.print-step-timings --enable-verbose-tests"
RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --set build.metrics"
RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --enable-verbose-configure"
RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --enable-sccache"
RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --disable-manage-submodules"
@@ -266,14 +261,10 @@ if [ "$RUN_CHECK_WITH_PARALLEL_QUERIES" != "" ]; then
$SRC/configure --set change-id=99999999

# Save the build metrics before we wipe the directory
if [ "$HAS_METRICS" = 1 ]; then
mv build/metrics.json .
fi
mv build/metrics.json .
rm -rf build
if [ "$HAS_METRICS" = 1 ]; then
mkdir build
mv metrics.json build
fi
mkdir build
mv metrics.json build

CARGO_INCREMENTAL=0 ../x check
fi