diff options
author | Vollstrecker <werner@vollstreckernet.de> | 2025-01-22 17:52:59 +0100 |
---|---|---|
committer | Mark Adler <madler@alumni.caltech.edu> | 2025-01-31 20:02:26 -0800 |
commit | 63ded6faaf16bf98536003e9c8c9d485a84e50c3 (patch) | |
tree | fc2f5d0eb6d5ea72c8f3288eca16c9da84758507 | |
parent | 1cac365fe48f7191658181979db18247d0528206 (diff) | |
download | zlib-63ded6faaf16bf98536003e9c8c9d485a84e50c3.tar.gz zlib-63ded6faaf16bf98536003e9c8c9d485a84e50c3.tar.bz2 zlib-63ded6faaf16bf98536003e9c8c9d485a84e50c3.zip |
CMake: Install missing bzip2 in workflow.
-rw-r--r-- | .github/workflows/cmake.yml | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml index 51f8ba6..fcd69a5 100644 --- a/.github/workflows/cmake.yml +++ b/.github/workflows/cmake.yml | |||
@@ -73,8 +73,12 @@ jobs: | |||
73 | - name: Install packages (Windows) | 73 | - name: Install packages (Windows) |
74 | if: runner.os == 'Windows' | 74 | if: runner.os == 'Windows' |
75 | run: | | 75 | run: | |
76 | choco install --no-progress ninja ${{ matrix.packages }} | 76 | choco install --no-progress ninja bzip2 |
77 | 77 | ||
78 | - name: Install packages (Windows) | ||
79 | if: runner.os == 'Ubuntu' | ||
80 | run: | | ||
81 | apt install libbz2-dev | ||
78 | - name: Generate project files | 82 | - 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 -DMINIZIP_ENABLE_BZIP2=ON | 83 | run: cmake -S . -B ../build ${{ matrix.cmake-args }} -D CMAKE_BUILD_TYPE=${{ matrix.build-config || 'Release' }} -DZLIB_BUILD_MINIZIP=ON -DMINIZIP_ENABLE_BZIP2=ON |
80 | env: | 84 | env: |