1
0
mirror of https://github.com/madler/zlib synced 2025-03-28 21:13:15 +00:00

CMake: Switch from make back to ninja.

Limit to one job.
This commit is contained in:
Vollstrecker 2025-01-22 17:53:17 +01:00 committed by Mark Adler
parent 63ded6faaf
commit c6d44927c5

View File

@ -62,14 +62,16 @@ jobs:
cygwin-devel
gcc-core
gcc-g++
make
ninja
- name: Configure
run: |
cmake /cygdrive/d/a/zlib/zlib \
-B build \
-DCMAKE_BUILD_TYPE=Release \
-DMINIZIP_ENABLE_BZIP2=ON
-DZLIB_BUILD_MINIZIP=ON \
-DMINIZIP_ENABLE_BZIP2=ON \
-G Ninja
- name: Build
run: cmake --build build --config Release
run: cmake --build build --config Release -v -j1
- name: Run tests
run: ctest --output-on-failure --test-dir build -C Release