Skip to content

Commit

Permalink
Only test std, alloc and core
Browse files Browse the repository at this point in the history
  • Loading branch information
diondokter committed May 17, 2024
1 parent b964b00 commit 5c30142
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/ci/docker/scripts/x86_64-gnu-llvm.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit 5c30142

Please sign in to comment.