From 63ded6faaf16bf98536003e9c8c9d485a84e50c3 Mon Sep 17 00:00:00 2001 From: Vollstrecker Date: Wed, 22 Jan 2025 17:52:59 +0100 Subject: CMake: Install missing bzip2 in workflow. --- .github/workflows/cmake.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to '.github') 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: - name: Install packages (Windows) if: runner.os == 'Windows' run: | - choco install --no-progress ninja ${{ matrix.packages }} + choco install --no-progress ninja bzip2 + - name: Install packages (Windows) + if: runner.os == 'Ubuntu' + run: | + apt install libbz2-dev - name: Generate project files run: cmake -S . -B ../build ${{ matrix.cmake-args }} -D CMAKE_BUILD_TYPE=${{ matrix.build-config || 'Release' }} -DZLIB_BUILD_MINIZIP=ON -DMINIZIP_ENABLE_BZIP2=ON env: -- cgit v1.2.3-55-g6feb