aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/cmake.yml
diff options
context:
space:
mode:
authorVollstrecker <werner@vollstreckernet.de>2025-11-24 13:54:23 +0100
committerMark Adler <git@madler.net>2025-12-08 04:03:01 -0800
commit9cca2787eab686802db91809732c6c7a205b19a5 (patch)
tree083c9ea5aabbbffb63055dfb838fa0091da73b85 /.github/workflows/cmake.yml
parent3516e02f22e246ee78cf6bddc360f60de4009027 (diff)
downloadzlib-9cca2787eab686802db91809732c6c7a205b19a5.tar.gz
zlib-9cca2787eab686802db91809732c6c7a205b19a5.tar.bz2
zlib-9cca2787eab686802db91809732c6c7a205b19a5.zip
CMake: Repair macOS action.
Diffstat (limited to '.github/workflows/cmake.yml')
-rw-r--r--.github/workflows/cmake.yml18
1 files changed, 16 insertions, 2 deletions
diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml
index 7f429bc7..60fdf595 100644
--- a/.github/workflows/cmake.yml
+++ b/.github/workflows/cmake.yml
@@ -65,9 +65,23 @@ jobs:
65 pkgtgt: package 65 pkgtgt: package
66 cmake-args: -DMINIZIP_ENABLE_BZIP2=ON 66 cmake-args: -DMINIZIP_ENABLE_BZIP2=ON
67 67
68 - name: macOS GCC 68 - name: macOS GCC 13
69 os: macos-latest 69 os: macos-latest
70 compiler: gcc-12 70 compiler: gcc-13
71 cflags: -Wall -Wextra
72 pkgtgt: package
73 cmake-args: -DMINIZIP_ENABLE_BZIP2=ON
74
75 - name: macOS GCC 14
76 os: macos-latest
77 compiler: gcc-14
78 cflags: -Wall -Wextra
79 pkgtgt: package
80 cmake-args: -DMINIZIP_ENABLE_BZIP2=ON
81
82 - name: macOS GCC 15
83 os: macos-latest
84 compiler: gcc-15
71 cflags: -Wall -Wextra 85 cflags: -Wall -Wextra
72 pkgtgt: package 86 pkgtgt: package
73 cmake-args: -DMINIZIP_ENABLE_BZIP2=ON 87 cmake-args: -DMINIZIP_ENABLE_BZIP2=ON