about summary refs log tree commit diff
diff options
context:
space:
mode:
-rwxr-xr-xsrc/ci/docker/scripts/x86_64-gnu-llvm1.sh20
-rwxr-xr-xsrc/ci/docker/scripts/x86_64-gnu-llvm2.sh8
2 files changed, 14 insertions, 14 deletions
diff --git a/src/ci/docker/scripts/x86_64-gnu-llvm1.sh b/src/ci/docker/scripts/x86_64-gnu-llvm1.sh
index 7336b4ce37b..45759ce6a66 100755
--- a/src/ci/docker/scripts/x86_64-gnu-llvm1.sh
+++ b/src/ci/docker/scripts/x86_64-gnu-llvm1.sh
@@ -20,17 +20,17 @@ fi
 
 # 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 tests
-      --skip coverage-map
-      --skip coverage-run
-      --skip library
+    ../x.py --stage 1 test \
+      --skip tests \
+      --skip coverage-map \
+      --skip coverage-run \
+      --skip library \
       --skip tidyselftest
 fi
 
-../x.py --stage 2 test
-  --skip tests
-  --skip coverage-map
-  --skip coverage-run
-  --skip library
+../x.py --stage 2 test \
+  --skip tests \
+  --skip coverage-map \
+  --skip coverage-run \
+  --skip library \
   --skip tidyselftest
diff --git a/src/ci/docker/scripts/x86_64-gnu-llvm2.sh b/src/ci/docker/scripts/x86_64-gnu-llvm2.sh
index a0d31d8d7ae..3902b8559f6 100755
--- a/src/ci/docker/scripts/x86_64-gnu-llvm2.sh
+++ b/src/ci/docker/scripts/x86_64-gnu-llvm2.sh
@@ -20,8 +20,8 @@ fi
 
 # 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 compiler
+    ../x.py --stage 1 test \
+      --skip compiler \
       --skip src
 
     # Run the `mir-opt` tests again but this time for a 32-bit target.
@@ -41,8 +41,8 @@ if [[ -z "${PR_CI_JOB}" ]]; then
         library/std library/alloc library/core
 fi
 
-../x.py --stage 2 test
-  --skip compiler
+../x.py --stage 2 test \
+  --skip compiler \
   --skip src
 
 # Run the `mir-opt` tests again but this time for a 32-bit target.