Skip to content

Commit 4a52bb0

Browse files
authored
Update ci.yml
1 parent fb10fcf commit 4a52bb0

1 file changed

Lines changed: 8 additions & 3 deletions

File tree

.github/workflows/ci.yml

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,15 +25,20 @@ jobs:
2525
- run: make test
2626

2727
buildwindows:
28-
runs-on: windows-latest
28+
runs-on: ${{ matrix.os }}
29+
strategy:
30+
matrix:
31+
include:
32+
- { sys: mingw64, env: x86_64 }
33+
- { sys: mingw32, env: i686 }
2934
defaults:
3035
run:
3136
shell: msys2 {0}
3237
steps:
3338
- uses: actions/checkout@v2
3439
- uses: msys2/setup-msys2@v2
3540
with:
36-
msystem: MINGW64
37-
install: make mingw-w64-x86_64-toolchain
41+
msystem: ${{matrix.sys}}
42+
install: make mingw-w64-${{matrix.env}}-toolchain
3843
- run: make
3944
- run: make test

0 commit comments

Comments
 (0)