Skip to content

Commit 8fbd6f5

Browse files
committed
Skip LLVM sysroot testing for native x86_64-pc-windows-gnu in CI
It is way too slow and cross-compiled x86_64-pc-windows-gnu covers at least part of the tests.
1 parent 1797ae5 commit 8fbd6f5

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

.github/workflows/main.yml

+3
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,9 @@ jobs:
106106

107107
# This is roughly config rust-lang/rust uses for testing
108108
- name: Test with LLVM sysroot
109+
# Skip native x86_64-pc-windows-gnu. It is way too slow and cross-compiled
110+
# x86_64-pc-windows-gnu covers at least part of the tests.
111+
if: matrix.os != 'windows-latest' || matrix.env.TARGET_TRIPLE != 'x86_64-pc-windows-gnu'
109112
env:
110113
TARGET_TRIPLE: ${{ matrix.env.TARGET_TRIPLE }}
111114
run: ./y.rs test --sysroot llvm --no-unstable-features

0 commit comments

Comments
 (0)