-
Notifications
You must be signed in to change notification settings - Fork 12.7k
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 #112779 - Kobzol:ci-merge-llvm-14, r=pietroalbini
CI: merge x86_64-gnu-llvm-14 and x86_64-gnu-llvm-14-stage1 CI jobs Another attempt to shorten CI job times. Suggested by `@the8472` [here](https://rust-lang.zulipchat.com/#narrow/stream/242791-t-infra/topic/CI.20usage/near/367172221).
- Loading branch information
Showing
7 changed files
with
41 additions
and
80 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
54 changes: 0 additions & 54 deletions
54
src/ci/docker/host-x86_64/x86_64-gnu-llvm-14-stage1/Dockerfile
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,34 @@ | ||
#!/bin/bash | ||
|
||
set -ex | ||
|
||
# Only run the stage 1 tests on merges, not on PR CI jobs. | ||
if [[ -z "${PR_CI_JOB}" ]]; then | ||
../x.py --stage 1 test --exclude src/tools/tidy && \ | ||
# Run the `mir-opt` tests again but this time for a 32-bit target. | ||
# This enforces that tests using `// EMIT_MIR_FOR_EACH_BIT_WIDTH` have | ||
# both 32-bit and 64-bit outputs updated by the PR author, before | ||
# the PR is approved and tested for merging. | ||
# It will also detect tests lacking `// EMIT_MIR_FOR_EACH_BIT_WIDTH`, | ||
# despite having different output on 32-bit vs 64-bit targets. | ||
../x.py --stage 1 test tests/mir-opt \ | ||
--host='' --target=i686-unknown-linux-gnu | ||
fi | ||
|
||
# NOTE: intentionally uses all of `x.py`, `x`, and `x.ps1` to make sure they all work on Linux. | ||
../x.py --stage 2 test --exclude src/tools/tidy && \ | ||
# Run the `mir-opt` tests again but this time for a 32-bit target. | ||
# This enforces that tests using `// EMIT_MIR_FOR_EACH_BIT_WIDTH` have | ||
# both 32-bit and 64-bit outputs updated by the PR author, before | ||
# the PR is approved and tested for merging. | ||
# It will also detect tests lacking `// EMIT_MIR_FOR_EACH_BIT_WIDTH`, | ||
# despite having different output on 32-bit vs 64-bit targets. | ||
../x --stage 2 test tests/mir-opt \ | ||
--host='' --target=i686-unknown-linux-gnu && \ | ||
# Run the UI test suite again, but in `--pass=check` mode | ||
# | ||
# This is intended to make sure that both `--pass=check` continues to | ||
# work. | ||
# | ||
../x.ps1 --stage 2 test tests/ui --pass=check \ | ||
--host='' --target=i686-unknown-linux-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
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