forked from rust-lang/rust
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Auto merge of rust-lang#131539 - matthiaskrgr:rollup-lxbdzlf, r=matth…
…iaskrgr Rollup of 5 pull requests Successful merges: - rust-lang#131464 (Update wasm-component-ld to 0.5.10) - rust-lang#131498 (Consider outermost const-anon in `non_local_def` lint) - rust-lang#131512 (Fixing rustDoc for LayoutError.) - rust-lang#131529 (rustdoc-json-types: fix typo in comment) - rust-lang#131531 (move dummy commit logic into x86_64-gnu-llvm-18) Failed merges: - rust-lang#131476 (coverage: Include the highest counter ID seen in `.cov-map` dumps) r? `@ghost` `@rustbot` modify labels: rollup
- Loading branch information
Showing
13 changed files
with
193 additions
and
78 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -47,18 +47,6 @@ ENV RUN_CHECK_WITH_PARALLEL_QUERIES 1 | |
# We disable optimized compiler built-ins because that requires a C toolchain for the target. | ||
# We also skip the x86_64-unknown-linux-gnu target as it is well-tested by other jobs. | ||
ENV SCRIPT \ | ||
# `core::builder::tests::ci_rustc_if_unchanged_logic` bootstrap test covers the `rust.download-rustc=if-unchanged` logic. | ||
# Here we are adding a dummy commit on compiler and running that test to ensure when there is a change on the compiler, | ||
# we never download ci rustc with `rust.download-rustc=if-unchanged` option. | ||
echo \"\" >> ../compiler/rustc/src/main.rs && \ | ||
git config --global user.email \"[email protected]\" && \ | ||
git config --global user.name \"dummy\" && \ | ||
git add ../compiler/rustc/src/main.rs && \ | ||
git commit -m \"test commit for rust.download-rustc=if-unchanged logic\" && \ | ||
DISABLE_CI_RUSTC_IF_INCOMPATIBLE=0 python3 ../x.py test bootstrap -- core::builder::tests::ci_rustc_if_unchanged_logic && \ | ||
# Revert the dummy commit | ||
git reset --hard HEAD~1 && \ | ||
|
||
python3 ../x.py check --stage 0 --set build.optimized-compiler-builtins=false core alloc std --target=aarch64-unknown-linux-gnu,i686-pc-windows-msvc,i686-unknown-linux-gnu,x86_64-apple-darwin,x86_64-pc-windows-gnu,x86_64-pc-windows-msvc && \ | ||
/scripts/check-default-config-profiles.sh && \ | ||
python3 ../x.py check --target=i686-pc-windows-gnu --host=i686-pc-windows-gnu && \ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,20 @@ | |
|
||
set -ex | ||
|
||
# `core::builder::tests::ci_rustc_if_unchanged_logic` bootstrap test ensures that | ||
# "download-rustc=if-unchanged" logic don't use CI rustc while there are changes on | ||
# compiler and/or library. Here we are adding a dummy commit on compiler and running | ||
# that test to make sure we never download CI rustc with a change on the compiler tree. | ||
echo "" >> ../compiler/rustc/src/main.rs | ||
git config --global user.email "[email protected]" | ||
git config --global user.name "dummy" | ||
git add ../compiler/rustc/src/main.rs | ||
git commit -m "test commit for rust.download-rustc=if-unchanged logic" | ||
DISABLE_CI_RUSTC_IF_INCOMPATIBLE=0 ../x.py test bootstrap \ | ||
-- core::builder::tests::ci_rustc_if_unchanged_logic | ||
# Revert the dummy commit | ||
git reset --hard HEAD~1 | ||
|
||
# Only run the stage 1 tests on merges, not on PR CI jobs. | ||
if [[ -z "${PR_CI_JOB}" ]]; then | ||
../x.py --stage 1 test --skip src/tools/tidy | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.