aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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