aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVollstrecker <werner@vollstreckernet.de>2025-12-24 14:30:00 +0100
committerMark Adler <git@madler.net>2026-01-31 20:15:09 -0800
commit9765e96141ff2b85339503ba1cb6ef98232338b2 (patch)
treee505efc9b15f01b6c7cc08e1e7d8a0c5d12b5409
parent8089c7dcb3dfc569a4c3e3681b020f7f85656f9e (diff)
downloadzlib-9765e96141ff2b85339503ba1cb6ef98232338b2.tar.gz
zlib-9765e96141ff2b85339503ba1cb6ef98232338b2.tar.bz2
zlib-9765e96141ff2b85339503ba1cb6ef98232338b2.zip
Add workflows for shared/static only building.
-rw-r--r--.github/workflows/cmake.yml14
1 files changed, 14 insertions, 0 deletions
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:
15 pkgtgt: package package_source 15 pkgtgt: package package_source
16 cmake-args: -DMINIZIP_ENABLE_BZIP2=ON 16 cmake-args: -DMINIZIP_ENABLE_BZIP2=ON
17 17
18 - name: Ubuntu GCC no shared
19 os: ubuntu-latest
20 compiler: gcc
21 cflags: -Wall -Wextra
22 pkgtgt: package package_source
23 cmake-args: -DZLIB_BUILD_SHARED=OFF -DMINIZIP_ENABLE_BZIP2=ON
24
25 - name: Ubuntu GCC no static
26 os: ubuntu-latest
27 compiler: gcc
28 cflags: -Wall -Wextra
29 pkgtgt: package package_source
30 cmake-args: -DZLIB_BUILD_STATIC=OFF -DMINIZIP_ENABLE_BZIP2=ON
31
18 - name: Ubuntu GCC -O3 32 - name: Ubuntu GCC -O3
19 os: ubuntu-latest 33 os: ubuntu-latest
20 compiler: gcc 34 compiler: gcc