Skip to content

Commit 46a3d8c

Browse files
committed
clang arm64 need windows arm64 runners, of course
1 parent d461965 commit 46a3d8c

1 file changed

Lines changed: 15 additions & 4 deletions

File tree

.github/workflows/mingw.yml

Lines changed: 15 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,10 @@ jobs:
88
strategy:
99
matrix:
1010
sys:
11-
- msys2
1211
- mingw64
1312
- ucrt64
1413
- clang64
15-
- clangarm64
14+
# - clangarm64
1615

1716
steps:
1817
- name: Check out repository code
@@ -38,8 +37,14 @@ jobs:
3837
cmake -S . -B build-debug \
3938
-DCMAKE_BUILD_TYPE=Debug \
4039
-DBUILD_TESTING=1 \
41-
-DLIBREMIDI_EXAMPLES=1 -DLIBREMIDI_TESTS=1
40+
-DLIBREMIDI_EXAMPLES=1 \
41+
-DLIBREMIDI_TESTS=1 \
42+
-DLIBREMIDI_CI=1 \
43+
-DCMAKE_CTEST_ARGUMENTS="--rerun-failed;--output-on-failure" \
44+
-DCMAKE_INSTALL_PREFIX=install
45+
4246
cmake --build build-debug
47+
cmake --build build-debug --target install
4348
4449
- name: Test debug
4550
shell: msys2 {0}
@@ -52,8 +57,14 @@ jobs:
5257
cmake -S . -B build-release \
5358
-DCMAKE_BUILD_TYPE=Release \
5459
-DBUILD_TESTING=1 \
55-
-DLIBREMIDI_EXAMPLES=1 -DLIBREMIDI_TESTS=1
60+
-DLIBREMIDI_EXAMPLES=1 \
61+
-DLIBREMIDI_TESTS=1 \
62+
-DLIBREMIDI_CI=1 \
63+
-DCMAKE_CTEST_ARGUMENTS="--rerun-failed;--output-on-failure" \
64+
-DCMAKE_INSTALL_PREFIX=install
65+
5666
cmake --build build-release
67+
cmake --build build-release --target install
5768
5869
- name: Test release
5970
shell: msys2 {0}

0 commit comments

Comments
 (0)