Skip to content

Commit e0d09a2

Browse files
committed
chore: wip
1 parent 692579d commit e0d09a2

1 file changed

Lines changed: 6 additions & 1 deletion

File tree

.github/workflows/windows.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,16 @@ jobs:
1515
include:
1616
- target: x86_64-pc-windows-msvc
1717
- target: i686-pc-windows-gnu
18+
env:
19+
TARGET: ${{ matrix.target }}
1820
steps:
1921
- uses: actions/checkout@v6
2022
- name: Set up Rust toolchain
2123
run: |
22-
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
2328
rustc -Vv
2429
- name: Test
2530
run: |

0 commit comments

Comments
 (0)