File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -10,41 +10,28 @@ jobs:
1010 build :
1111 runs-on : ${{ matrix.os }}
1212 strategy :
13+ fail-fast : false
1314 matrix :
1415 os :
1516 - ubuntu-latest
1617 - macos-latest
18+ - windows-latest
1719 arch :
1820 - x64
19- - x32
21+ - x86
2022 - armv7
2123 - aarch64
22- steps :
23- - uses : actions/checkout@v2
24- - name : Build and run tests
25- run : make && make test
26-
27- buildwindows :
28- runs-on : ${{ matrix.os }}
29- strategy :
30- fail-fast : false
31- matrix :
32- os :
33- - windows-latest
34- julia-arch :
35- - x64
36- - x86
3724 steps :
3825 - uses : actions/checkout@v2
3926 - name : Install i686-w64-mingw32-gcc
40- if : ${{ matrix.os == 'windows-latest' && matrix.julia- arch == 'x86' }}
27+ if : ${{ matrix.os == 'windows-latest' && matrix.arch == 'x86' }}
4128 shell : bash
4229 run : |
4330 choco install mingw -y --x86 --force --params "/exception:sjlj"
4431 choco install make -y
4532 echo "CC=i686-w64-mingw32-gcc" >> "${GITHUB_ENV}"
4633 - name : Set compiler for 64-bit Windows
47- if : ${{ matrix.os == 'windows-latest' && matrix.julia- arch == 'x64' }}
34+ if : ${{ matrix.os == 'windows-latest' && matrix.arch == 'x64' }}
4835 shell : bash
4936 run : |
5037 echo "CC=x86_64-w64-mingw32-gcc" >> "${GITHUB_ENV}"
You can’t perform that action at this time.
0 commit comments