We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1cac365 commit 63ded6fCopy full SHA for 63ded6f
.github/workflows/cmake.yml
@@ -73,8 +73,12 @@ jobs:
73
- name: Install packages (Windows)
74
if: runner.os == 'Windows'
75
run: |
76
- choco install --no-progress ninja ${{ matrix.packages }}
+ choco install --no-progress ninja bzip2
77
78
+ - name: Install packages (Windows)
79
+ if: runner.os == 'Ubuntu'
80
+ run: |
81
+ apt install libbz2-dev
82
- name: Generate project files
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
84
env:
0 commit comments