Skip to content

Commit ffb63f9

Browse files
author
Vollstrecker
committed
Really run the test with clang for mingw-clan64
1 parent 33e2c85 commit ffb63f9

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

.github/workflows/msys-cygwin.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,13 +29,23 @@ jobs:
2929
toolchain:p
3030
cmake:p
3131
- name: Configure
32+
if: matrix.sys != 'clang64'
3233
run: |
3334
cmake -G"Unix Makefiles" \
3435
-S . \
3536
-B build \
3637
-DCMAKE_VERBOSE_MAKEFILE=ON \
3738
-DCMAKE_BUILD_TYPE=Release \
3839
-DMINIZIP_ENABLE_BZIP2=ON
40+
- name: Configure clang64
41+
if: matrix.sys == 'clang64'
42+
run: |
43+
CC=clang cmake -G"Unix Makefiles" \
44+
-S . \
45+
-B build \
46+
-DCMAKE_VERBOSE_MAKEFILE=ON \
47+
-DCMAKE_BUILD_TYPE=Release \
48+
-DMINIZIP_ENABLE_BZIP2=ON
3949
- name: Build
4050
run: cmake --build build --config Release
4151
- name: Run tests

0 commit comments

Comments
 (0)