File tree Expand file tree Collapse file tree 1 file changed +5
-18
lines changed Expand file tree Collapse file tree 1 file changed +5
-18
lines changed Original file line number Diff line number Diff line change @@ -10,41 +10,28 @@ jobs:
10
10
build :
11
11
runs-on : ${{ matrix.os }}
12
12
strategy :
13
+ fail-fast : false
13
14
matrix :
14
15
os :
15
16
- ubuntu-latest
16
17
- macos-latest
18
+ - windows-latest
17
19
arch :
18
20
- x64
19
- - x32
21
+ - x86
20
22
- armv7
21
23
- 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
37
24
steps :
38
25
- uses : actions/checkout@v2
39
26
- 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' }}
41
28
shell : bash
42
29
run : |
43
30
choco install mingw -y --x86 --force --params "/exception:sjlj"
44
31
choco install make -y
45
32
echo "CC=i686-w64-mingw32-gcc" >> "${GITHUB_ENV}"
46
33
- 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' }}
48
35
shell : bash
49
36
run : |
50
37
echo "CC=x86_64-w64-mingw32-gcc" >> "${GITHUB_ENV}"
You can’t perform that action at this time.
0 commit comments