diff options
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/c-std.yml | 4 | ||||
-rw-r--r-- | .github/workflows/cmake.yml | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/c-std.yml b/.github/workflows/c-std.yml index bc93110..a99cdb5 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 }} |
diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml index 40aae60..1b61711 100644 --- a/.github/workflows/cmake.yml +++ b/.github/workflows/cmake.yml | |||
@@ -76,7 +76,7 @@ jobs: | |||
76 | choco install --no-progress ninja ${{ matrix.packages }} | 76 | choco install --no-progress ninja ${{ matrix.packages }} |
77 | 77 | ||
78 | - name: Generate project files | 78 | - name: Generate project files |
79 | run: cmake -S . -B ../build ${{ matrix.cmake-args }} -D CMAKE_BUILD_TYPE=${{ matrix.build-config || 'Release' }} -DZLIB_BUILD_MINIZIP=ON | 79 | run: cmake -S . -B ../build ${{ matrix.cmake-args }} -D CMAKE_BUILD_TYPE=${{ matrix.build-config || 'Release' }} -DZLIB_BUILD_MINIZIP=ON -DMINIZIP_ENABLE_BZIP2=OFF |
80 | env: | 80 | env: |
81 | CC: ${{ matrix.compiler }} | 81 | CC: ${{ matrix.compiler }} |
82 | CFLAGS: ${{ matrix.cflags }} | 82 | CFLAGS: ${{ matrix.cflags }} |