We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1797ae5 commit 8fbd6f5Copy full SHA for 8fbd6f5
.github/workflows/main.yml
@@ -106,6 +106,9 @@ jobs:
106
107
# This is roughly config rust-lang/rust uses for testing
108
- 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'
112
env:
113
TARGET_TRIPLE: ${{ matrix.env.TARGET_TRIPLE }}
114
run: ./y.rs test --sysroot llvm --no-unstable-features
0 commit comments