We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 692579d commit e0d09a2Copy full SHA for e0d09a2
1 file changed
.github/workflows/windows.yml
@@ -15,11 +15,16 @@ jobs:
15
include:
16
- target: x86_64-pc-windows-msvc
17
- target: i686-pc-windows-gnu
18
+ env:
19
+ TARGET: ${{ matrix.target }}
20
steps:
21
- uses: actions/checkout@v6
22
- name: Set up Rust toolchain
23
run: |
- rustup default ${{ matrix.target }}
24
+ if [ "$TARGET" = "i686-pc-windows-gnu" ]; then
25
+ rustup target add i686-pc-windows-gnu
26
+ fi
27
+ rustup default nightly-$TARGET
28
rustc -Vv
29
- name: Test
30
0 commit comments