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 72caeab commit 4d97e2dCopy full SHA for 4d97e2d
1 file changed
.github/workflows/ci.yml
@@ -8,25 +8,34 @@ on:
8
9
jobs:
10
build:
11
-
12
runs-on: ${{ matrix.os }}
13
strategy:
14
- fail-fast: false
15
matrix:
16
os:
17
- ubuntu-latest
18
- macos-latest
19
- - windows-latest
20
arch:
21
- x64
22
- x32
23
- armv7
24
- - aarch64
25
+ - aarch64
26
steps:
27
- uses: actions/checkout@v2
28
- - uses: msys2/setup-msys2@v2
29
- name: make
30
run: make
31
- name: make test
32
run: make test
+
+ buildwindows:
+ runs-on: windows-latest
+ defaults:
+ 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