diff options
| -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: |
