Skip to content

Commit 1f38572

Browse files
committed
fix
1 parent fee220a commit 1f38572

File tree

2 files changed

+14
-14
lines changed

2 files changed

+14
-14
lines changed

src/ci/docker/scripts/x86_64-gnu-llvm1.sh

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -20,17 +20,17 @@ fi
2020

2121
# Only run the stage 1 tests on merges, not on PR CI jobs.
2222
if [[ -z "${PR_CI_JOB}" ]]; then
23-
../x.py --stage 1 test
24-
--skip tests
25-
--skip coverage-map
26-
--skip coverage-run
27-
--skip library
23+
../x.py --stage 1 test \
24+
--skip tests \
25+
--skip coverage-map \
26+
--skip coverage-run \
27+
--skip library \
2828
--skip tidyselftest
2929
fi
3030

31-
../x.py --stage 2 test
32-
--skip tests
33-
--skip coverage-map
34-
--skip coverage-run
35-
--skip library
31+
../x.py --stage 2 test \
32+
--skip tests \
33+
--skip coverage-map \
34+
--skip coverage-run \
35+
--skip library \
3636
--skip tidyselftest

src/ci/docker/scripts/x86_64-gnu-llvm2.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ fi
2020

2121
# Only run the stage 1 tests on merges, not on PR CI jobs.
2222
if [[ -z "${PR_CI_JOB}" ]]; then
23-
../x.py --stage 1 test
24-
--skip compiler
23+
../x.py --stage 1 test \
24+
--skip compiler \
2525
--skip src
2626

2727
# Run the `mir-opt` tests again but this time for a 32-bit target.
@@ -41,8 +41,8 @@ if [[ -z "${PR_CI_JOB}" ]]; then
4141
library/std library/alloc library/core
4242
fi
4343

44-
../x.py --stage 2 test
45-
--skip compiler
44+
../x.py --stage 2 test \
45+
--skip compiler \
4646
--skip src
4747

4848
# Run the `mir-opt` tests again but this time for a 32-bit target.

0 commit comments

Comments
 (0)