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 63ded6f commit c6d4492Copy full SHA for c6d4492
.github/workflows/msys-cygwin.yml
@@ -62,14 +62,16 @@ jobs:
62
cygwin-devel
63
gcc-core
64
gcc-g++
65
- make
+ ninja
66
- name: Configure
67
run: |
68
cmake /cygdrive/d/a/zlib/zlib \
69
-B build \
70
-DCMAKE_BUILD_TYPE=Release \
71
- -DMINIZIP_ENABLE_BZIP2=ON
+ -DZLIB_BUILD_MINIZIP=ON \
72
+ -DMINIZIP_ENABLE_BZIP2=ON \
73
+ -G Ninja
74
- name: Build
- run: cmake --build build --config Release
75
+ run: cmake --build build --config Release -v -j1
76
- name: Run tests
77
run: ctest --output-on-failure --test-dir build -C Release
0 commit comments