Skip to content

Commit 63ded6f

Browse files
Vollstreckermadler
authored andcommitted
CMake: Install missing bzip2 in workflow.
1 parent 1cac365 commit 63ded6f

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/cmake.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,8 +73,12 @@ jobs:
7373
- name: Install packages (Windows)
7474
if: runner.os == 'Windows'
7575
run: |
76-
choco install --no-progress ninja ${{ matrix.packages }}
76+
choco install --no-progress ninja bzip2
7777
78+
- name: Install packages (Windows)
79+
if: runner.os == 'Ubuntu'
80+
run: |
81+
apt install libbz2-dev
7882
- name: Generate project files
7983
run: cmake -S . -B ../build ${{ matrix.cmake-args }} -D CMAKE_BUILD_TYPE=${{ matrix.build-config || 'Release' }} -DZLIB_BUILD_MINIZIP=ON -DMINIZIP_ENABLE_BZIP2=ON
8084
env:

0 commit comments

Comments
 (0)