aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVollstrecker <werner@vollstreckernet.de>2025-01-22 17:52:59 +0100
committerMark Adler <madler@alumni.caltech.edu>2025-01-31 20:02:26 -0800
commit63ded6faaf16bf98536003e9c8c9d485a84e50c3 (patch)
treefc2f5d0eb6d5ea72c8f3288eca16c9da84758507
parent1cac365fe48f7191658181979db18247d0528206 (diff)
downloadzlib-63ded6faaf16bf98536003e9c8c9d485a84e50c3.tar.gz
zlib-63ded6faaf16bf98536003e9c8c9d485a84e50c3.tar.bz2
zlib-63ded6faaf16bf98536003e9c8c9d485a84e50c3.zip
CMake: Install missing bzip2 in workflow.
-rw-r--r--.github/workflows/cmake.yml6
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: