about summary refs log tree commit diff
path: root/src/ci/docker/scripts
diff options
context:
space:
mode:
authorDion Dokter <dion@tweedegolf.com>2024-05-17 12:02:21 +0200
committerDion Dokter <dion@tweedegolf.com>2024-05-17 12:03:02 +0200
commit5c301429bd5fe54351f2c88a6c9b4114abcb1880 (patch)
treeed7cefde92344311a1ff0acaad389d1891393171 /src/ci/docker/scripts
parentb964b0066833bc4deb8ebc3bae218a5298da82a9 (diff)
downloadrust-5c301429bd5fe54351f2c88a6c9b4114abcb1880.tar.gz
rust-5c301429bd5fe54351f2c88a6c9b4114abcb1880.zip
Only test std, alloc and core
Diffstat (limited to 'src/ci/docker/scripts')
-rwxr-xr-xsrc/ci/docker/scripts/x86_64-gnu-llvm.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/ci/docker/scripts/x86_64-gnu-llvm.sh b/src/ci/docker/scripts/x86_64-gnu-llvm.sh
index 1f4ba498673..fe545e1d5f7 100755
--- a/src/ci/docker/scripts/x86_64-gnu-llvm.sh
+++ b/src/ci/docker/scripts/x86_64-gnu-llvm.sh
@@ -9,12 +9,12 @@ if [[ -z "${PR_CI_JOB}" ]]; then
     # The tests are run a second time with the size optimizations enabled.
     if [[ "${ENABLE_GCC_CODEGEN}" == "1" ]]; then
         ../x.py --stage 1 test --skip src/tools/tidy --skip tests/codegen
-        ../x.py --stage 1 test --skip src/tools/tidy --skip tests/codegen \
+        ../x.py --stage 1 test library/std library/alloc library/core \
             --rustc-args "--cfg feature=\"optimize_for_size\""
     else
         ../x.py --stage 1 test --skip src/tools/tidy
-        ../x.py --stage 1 test --skip src/tools/tidy --rustc-args \
-            "--cfg feature=\"optimize_for_size\""
+        ../x.py --stage 1 test library/std library/alloc library/core \
+            --rustc-args "--cfg feature=\"optimize_for_size\""
     fi
 
     # Run the `mir-opt` tests again but this time for a 32-bit target.