about summary refs log tree commit diff
diff options
context:
space:
mode:
authorbjorn3 <17426603+bjorn3@users.noreply.github.com>2024-11-03 14:36:21 +0000
committerbjorn3 <17426603+bjorn3@users.noreply.github.com>2024-11-03 14:37:10 +0000
commit5e1298ccdb4f33841569ad4b84a64b733bb42a39 (patch)
tree94121d32835dbc7ecec83ae3188c6eb513899090
parent521288ef0f332ae0f50a80fb36ba88e4a2f65b02 (diff)
downloadrust-5e1298ccdb4f33841569ad4b84a64b733bb42a39.tar.gz
rust-5e1298ccdb4f33841569ad4b84a64b733bb42a39.zip
Revert "Skip testing extended_sysroot tests with cg_llvm on CI"
This reverts commit 521288ef0f332ae0f50a80fb36ba88e4a2f65b02.

I got what it tests backwards. It tests against a sysroot compiled with
LLVM. Not with the LLVM backend. The latter is done by the test_llvm CI
job.
-rw-r--r--.github/workflows/main.yml4
1 files changed, 1 insertions, 3 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml
index 70fee3baf21..2ee94146c1a 100644
--- a/.github/workflows/main.yml
+++ b/.github/workflows/main.yml
@@ -140,9 +140,7 @@ jobs:
       if: matrix.os != 'windows-latest' || matrix.env.TARGET_TRIPLE != 'x86_64-pc-windows-gnu'
       env:
         TARGET_TRIPLE: ${{ matrix.env.TARGET_TRIPLE }}
-      # Skip tests that need cg_clif specific unstable features. Also skip tests that are not
-      # cg_clif specific and thus unlikely to be broken with cg_llvm.
-      run: ./y.sh test --sysroot llvm --no-unstable-features --skip-test testsuite.extended_sysroot
+      run: ./y.sh test --sysroot llvm --no-unstable-features
 
 
   # This job doesn't use cg_clif in any way. It checks that all cg_clif tests work with cg_llvm too.