diff options
| author | bjorn3 <17426603+bjorn3@users.noreply.github.com> | 2024-11-03 13:47:58 +0000 |
|---|---|---|
| committer | bjorn3 <17426603+bjorn3@users.noreply.github.com> | 2024-11-03 13:47:58 +0000 |
| commit | 521288ef0f332ae0f50a80fb36ba88e4a2f65b02 (patch) | |
| tree | 2cb8d272093ab899f10cae9d699a3c0266cdcbd1 | |
| parent | 29d225d66540200f07e5b2ce63596f9839f62f4d (diff) | |
| download | rust-521288ef0f332ae0f50a80fb36ba88e4a2f65b02.tar.gz rust-521288ef0f332ae0f50a80fb36ba88e4a2f65b02.zip | |
Skip testing extended_sysroot tests with cg_llvm on CI
| -rw-r--r-- | .github/workflows/main.yml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 2ee94146c1a..70fee3baf21 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -140,7 +140,9 @@ jobs: if: matrix.os != 'windows-latest' || matrix.env.TARGET_TRIPLE != 'x86_64-pc-windows-gnu' env: TARGET_TRIPLE: ${{ matrix.env.TARGET_TRIPLE }} - run: ./y.sh test --sysroot llvm --no-unstable-features + # 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 # This job doesn't use cg_clif in any way. It checks that all cg_clif tests work with cg_llvm too. |
