We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fb10fcf commit 4a52bb0Copy full SHA for 4a52bb0
1 file changed
.github/workflows/ci.yml
@@ -25,15 +25,20 @@ jobs:
25
- run: make test
26
27
buildwindows:
28
- runs-on: windows-latest
+ runs-on: ${{ matrix.os }}
29
+ strategy:
30
+ matrix:
31
+ include:
32
+ - { sys: mingw64, env: x86_64 }
33
+ - { sys: mingw32, env: i686 }
34
defaults:
35
run:
36
shell: msys2 {0}
37
steps:
38
- uses: actions/checkout@v2
39
- uses: msys2/setup-msys2@v2
40
with:
- msystem: MINGW64
- install: make mingw-w64-x86_64-toolchain
41
+ msystem: ${{matrix.sys}}
42
+ install: make mingw-w64-${{matrix.env}}-toolchain
43
- run: make
44
0 commit comments