Skip to content

Commit c6d4492

Browse files
Vollstreckermadler
authored andcommitted
CMake: Switch from make back to ninja.
Limit to one job.
1 parent 63ded6f commit c6d4492

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

.github/workflows/msys-cygwin.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -62,14 +62,16 @@ jobs:
6262
cygwin-devel
6363
gcc-core
6464
gcc-g++
65-
make
65+
ninja
6666
- name: Configure
6767
run: |
6868
cmake /cygdrive/d/a/zlib/zlib \
6969
-B build \
7070
-DCMAKE_BUILD_TYPE=Release \
71-
-DMINIZIP_ENABLE_BZIP2=ON
71+
-DZLIB_BUILD_MINIZIP=ON \
72+
-DMINIZIP_ENABLE_BZIP2=ON \
73+
-G Ninja
7274
- name: Build
73-
run: cmake --build build --config Release
75+
run: cmake --build build --config Release -v -j1
7476
- name: Run tests
7577
run: ctest --output-on-failure --test-dir build -C Release

0 commit comments

Comments
 (0)