diff options
Diffstat (limited to 'src/ci/docker')
| -rwxr-xr-x | src/ci/docker/host-x86_64/x86_64-gnu-llvm-15/script.sh | 4 | ||||
| -rwxr-xr-x | src/ci/docker/run.sh | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/ci/docker/host-x86_64/x86_64-gnu-llvm-15/script.sh b/src/ci/docker/host-x86_64/x86_64-gnu-llvm-15/script.sh index 8999983e428..b964f19fe0b 100755 --- a/src/ci/docker/host-x86_64/x86_64-gnu-llvm-15/script.sh +++ b/src/ci/docker/host-x86_64/x86_64-gnu-llvm-15/script.sh @@ -4,7 +4,7 @@ set -ex # Only run the stage 1 tests on merges, not on PR CI jobs. if [[ -z "${PR_CI_JOB}" ]]; then - if [[ "${SKIP_CODEGEN_TESTS}" == "1" ]]; then + if [[ "${ENABLE_GCC_CODEGEN}" == "1" ]]; then ../x.py --stage 1 test --skip src/tools/tidy --skip tests/codegen else ../x.py --stage 1 test --skip src/tools/tidy @@ -24,7 +24,7 @@ if [[ -z "${PR_CI_JOB}" ]]; then fi # NOTE: intentionally uses all of `x.py`, `x`, and `x.ps1` to make sure they all work on Linux. -if [[ "${SKIP_CODEGEN_TESTS}" == "1" ]]; then +if [[ "${ENABLE_GCC_CODEGEN}" == "1" ]]; then ../x.py --stage 2 test --skip src/tools/tidy --skip tests/codegen else ../x.py --stage 2 test --skip src/tools/tidy diff --git a/src/ci/docker/run.sh b/src/ci/docker/run.sh index 5e85bd14ea3..5021ed44658 100755 --- a/src/ci/docker/run.sh +++ b/src/ci/docker/run.sh @@ -271,7 +271,7 @@ docker \ run \ --workdir /checkout/obj \ --env SRC=/checkout \ - --env "SKIP_CODEGEN_TESTS=$SKIP_CODEGEN_TESTS" \ + --env "ENABLE_GCC_CODEGEN=$ENABLE_GCC_CODEGEN" \ $args \ --env CARGO_HOME=/cargo \ --env DEPLOY \ |
