From cdb3ab194cf27c380779d4a59f9f824f03a34dfb Mon Sep 17 00:00:00 2001 From: Vollstrecker Date: Wed, 22 Jan 2025 19:48:48 +0100 Subject: [PATCH] CMake: Correct workflow options to disable bzip2 on Windows. Note that Vollstrecker hates yaml. --- .github/workflows/cmake.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml index a25a3877..25a3b812 100644 --- a/.github/workflows/cmake.yml +++ b/.github/workflows/cmake.yml @@ -48,17 +48,15 @@ jobs: os: windows-latest compiler: cl cflags: /W3 - cmake-args: -A x64 + cmake-args: -A x64 -DMINIZIP_ENABLE_BZIP2=OFF pkgtgt: PACKAGE - cmake-args: -DMINIZIP_ENABLE_BZIP2=OFF - name: Windows GCC os: windows-latest compiler: gcc cflags: -Wall -Wextra - cmake-args: -G Ninja + cmake-args: -G Ninja -DMINIZIP_ENABLE_BZIP2=OFF pkgtgt: package - cmake-args: -DMINIZIP_ENABLE_BZIP2=OFF - name: macOS Clang os: macos-latest