Skip to content

Commit 4d97e2d

Browse files
authored
Update ci.yml
1 parent 72caeab commit 4d97e2d

1 file changed

Lines changed: 15 additions & 6 deletions

File tree

.github/workflows/ci.yml

Lines changed: 15 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,25 +8,34 @@ on:
88

99
jobs:
1010
build:
11-
1211
runs-on: ${{ matrix.os }}
1312
strategy:
14-
fail-fast: false
1513
matrix:
1614
os:
1715
- ubuntu-latest
1816
- macos-latest
19-
- windows-latest
2017
arch:
2118
- x64
2219
- x32
2320
- armv7
24-
- aarch64
25-
21+
- aarch64
2622
steps:
2723
- uses: actions/checkout@v2
28-
- uses: msys2/setup-msys2@v2
2924
- name: make
3025
run: make
3126
- name: make test
3227
run: make test
28+
29+
buildwindows:
30+
runs-on: windows-latest
31+
defaults:
32+
run:
33+
shell: msys2 {0}
34+
steps:
35+
- uses: actions/checkout@v2
36+
- uses: msys2/setup-msys2@v2
37+
with:
38+
install: make mingw-w64-x86_64-clang
39+
- run: clang --version
40+
- run: make USECLANG=1
41+
- run: make test

0 commit comments

Comments
 (0)