Skip to content

Commit 24cec17

Browse files
authored
Update ci.yml
1 parent d26ed98 commit 24cec17

File tree

1 file changed

+5
-18
lines changed

1 file changed

+5
-18
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 18 deletions
Original file line numberDiff line numberDiff 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}"

0 commit comments

Comments
 (0)