aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/c-std.yml
diff options
context:
space:
mode:
authorVollstrecker <werner@vollstreckernet.de>2024-12-31 14:18:49 +0100
committerMark Adler <madler@alumni.caltech.edu>2025-01-31 20:02:26 -0800
commitb8ae23d4c839093b3f63fb2af85f1cc3d6562c86 (patch)
tree2ab7a4a8ffd59efd16cff27b6350dba89b4e0955 /.github/workflows/c-std.yml
parent7667ca55931302d8e35c37a46851eb02191d465f (diff)
downloadzlib-b8ae23d4c839093b3f63fb2af85f1cc3d6562c86.tar.gz
zlib-b8ae23d4c839093b3f63fb2af85f1cc3d6562c86.tar.bz2
zlib-b8ae23d4c839093b3f63fb2af85f1cc3d6562c86.zip
CMake: Disable bzip2 for tests.
It's not installed everywhere.
Diffstat (limited to '.github/workflows/c-std.yml')
-rw-r--r--.github/workflows/c-std.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/c-std.yml b/.github/workflows/c-std.yml
index bc931104..a99cdb56 100644
--- a/.github/workflows/c-std.yml
+++ b/.github/workflows/c-std.yml
@@ -141,7 +141,7 @@ jobs:
141 - name: Generate project files with tests (cmake) 141 - name: Generate project files with tests (cmake)
142 if: matrix.builder == 'cmake' 142 if: matrix.builder == 'cmake'
143 run: | 143 run: |
144 cmake -S . -B ./build2 -D CMAKE_BUILD_TYPE=Release ${{ matrix.os.cmake-opt }} -DZLIB_BUILD_MINIZIP=ON 144 cmake -S . -B ./build2 -D CMAKE_BUILD_TYPE=Release ${{ matrix.os.cmake-opt }} -DZLIB_BUILD_MINIZIP=ON -DMINIZIP_ENABLE_BZIP2=OFF
145 env: 145 env:
146 CC: ${{ matrix.compiler }} 146 CC: ${{ matrix.compiler }}
147 CFLAGS: -std=${{ matrix.std.value }} ${{ matrix.arch.compiler-opt }} -Wall -Wextra 147 CFLAGS: -std=${{ matrix.std.value }} ${{ matrix.arch.compiler-opt }} -Wall -Wextra
@@ -215,7 +215,7 @@ jobs:
215 215
216 - name: Generate project files with tests (cmake) 216 - name: Generate project files with tests (cmake)
217 run: | 217 run: |
218 cmake -S . -B ./build2 ${{ matrix.arch.value }} -D CMAKE_BUILD_TYPE=Release -DZLIB_BUILD_MINIZIP=ON 218 cmake -S . -B ./build2 ${{ matrix.arch.value }} -D CMAKE_BUILD_TYPE=Release -DZLIB_BUILD_MINIZIP=ON -DMINIZIP_ENABLE_BZIP2=OFF
219 env: 219 env:
220 CC: ${{ matrix.compiler }} 220 CC: ${{ matrix.compiler }}
221 CFLAGS: ${{ matrix.std.value }} 221 CFLAGS: ${{ matrix.std.value }}