From 9765e96141ff2b85339503ba1cb6ef98232338b2 Mon Sep 17 00:00:00 2001 From: Vollstrecker Date: Wed, 24 Dec 2025 14:30:00 +0100 Subject: Add workflows for shared/static only building. --- .github/workflows/cmake.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml index bdea59f4..70f667ca 100644 --- a/.github/workflows/cmake.yml +++ b/.github/workflows/cmake.yml @@ -15,6 +15,20 @@ jobs: pkgtgt: package package_source cmake-args: -DMINIZIP_ENABLE_BZIP2=ON + - name: Ubuntu GCC no shared + os: ubuntu-latest + compiler: gcc + cflags: -Wall -Wextra + pkgtgt: package package_source + cmake-args: -DZLIB_BUILD_SHARED=OFF -DMINIZIP_ENABLE_BZIP2=ON + + - name: Ubuntu GCC no static + os: ubuntu-latest + compiler: gcc + cflags: -Wall -Wextra + pkgtgt: package package_source + cmake-args: -DZLIB_BUILD_STATIC=OFF -DMINIZIP_ENABLE_BZIP2=ON + - name: Ubuntu GCC -O3 os: ubuntu-latest compiler: gcc -- cgit v1.2.3-55-g6feb