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 33e2c85 commit ffb63f9Copy full SHA for ffb63f9
.github/workflows/msys-cygwin.yml
@@ -29,13 +29,23 @@ jobs:
29
toolchain:p
30
cmake:p
31
- name: Configure
32
+ if: matrix.sys != 'clang64'
33
run: |
34
cmake -G"Unix Makefiles" \
35
-S . \
36
-B build \
37
-DCMAKE_VERBOSE_MAKEFILE=ON \
38
-DCMAKE_BUILD_TYPE=Release \
39
-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
49
- name: Build
50
run: cmake --build build --config Release
51
- name: Run tests
0 commit comments