File tree 5 files changed +6
-6
lines changed
host-x86_64/x86_64-gnu-llvm-15
5 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 58
58
env : {}
59
59
- name : x86_64-gnu-llvm-15
60
60
env :
61
- SKIP_CODEGEN_TESTS : " 1"
61
+ ENABLE_GCC_CODEGEN : " 1"
62
62
os : ubuntu-20.04-16core-64gb
63
63
- name : x86_64-gnu-tools
64
64
os : ubuntu-20.04-16core-64gb
Original file line number Diff line number Diff line change 4
4
5
5
# Only run the stage 1 tests on merges, not on PR CI jobs.
6
6
if [[ -z " ${PR_CI_JOB} " ]]; then
7
- if [[ " ${SKIP_CODEGEN_TESTS } " == " 1" ]]; then
7
+ if [[ " ${ENABLE_GCC_CODEGEN } " == " 1" ]]; then
8
8
../x.py --stage 1 test --skip src/tools/tidy --skip tests/codegen
9
9
else
10
10
../x.py --stage 1 test --skip src/tools/tidy
@@ -24,7 +24,7 @@ if [[ -z "${PR_CI_JOB}" ]]; then
24
24
fi
25
25
26
26
# NOTE: intentionally uses all of `x.py`, `x`, and `x.ps1` to make sure they all work on Linux.
27
- if [[ " ${SKIP_CODEGEN_TESTS } " == " 1" ]]; then
27
+ if [[ " ${ENABLE_GCC_CODEGEN } " == " 1" ]]; then
28
28
../x.py --stage 2 test --skip src/tools/tidy --skip tests/codegen
29
29
else
30
30
../x.py --stage 2 test --skip src/tools/tidy
Original file line number Diff line number Diff line change @@ -271,7 +271,7 @@ docker \
271
271
run \
272
272
--workdir /checkout/obj \
273
273
--env SRC=/checkout \
274
- --env " SKIP_CODEGEN_TESTS= $SKIP_CODEGEN_TESTS " \
274
+ --env " ENABLE_GCC_CODEGEN= $ENABLE_GCC_CODEGEN " \
275
275
$args \
276
276
--env CARGO_HOME=/cargo \
277
277
--env DEPLOY \
Original file line number Diff line number Diff line change @@ -333,7 +333,7 @@ jobs:
333
333
- name : x86_64-gnu-llvm-15
334
334
<< : *job-linux-16c
335
335
env :
336
- SKIP_CODEGEN_TESTS : " 1"
336
+ ENABLE_GCC_CODEGEN : " 1"
337
337
338
338
- name : x86_64-gnu-tools
339
339
<< : *job-linux-16c
Original file line number Diff line number Diff line change 126
126
127
127
RUST_CONFIGURE_ARGS=" $RUST_CONFIGURE_ARGS --set rust.verify-llvm-ir"
128
128
129
- if [[ " ${SKIP_CODEGEN_TESTS } " == " 1" ]]; then
129
+ if [[ " ${ENABLE_GCC_CODEGEN } " == " 1" ]]; then
130
130
# Test the Cranelift backend in CI. Bootstrap knows which targets to run tests on.
131
131
RUST_CONFIGURE_ARGS=" $RUST_CONFIGURE_ARGS --set rust.codegen-backends=llvm,cranelift"
132
132
else
You can’t perform that action at this time.
0 commit comments