Skip to content

Commit b1ef3a8

Browse files
committed
Work on check-macos: Enable building on macOS 26.
Suggested by Collin Funk.
1 parent 1ac9728 commit b1ef3a8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/many-platforms.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -288,7 +288,7 @@ jobs:
288288
strategy:
289289
fail-fast: false
290290
matrix:
291-
os: [macos-13, macos-14, macos-15]
291+
os: [macos-13, macos-14, macos-15, macos-26]
292292
runs-on: ${{ matrix.os }}
293293
steps:
294294
# This is needed because we run a script stored in this repository.
@@ -309,7 +309,7 @@ jobs:
309309
pwd
310310
export CPPFLAGS="-I$HOME/include -I${HOMEBREW_PREFIX-/usr/local}/opt/gettext/include -I${HOMEBREW_PREFIX-/usr/local}/opt/libiconv/include -Wall"
311311
export LDFLAGS="-L$HOME/lib -L${HOMEBREW_PREFIX-/usr/local}/opt/gettext/lib -L${HOMEBREW_PREFIX-/usr/local}/opt/libiconv/lib"
312-
./build-on.sh '${{ env.package }}' '' 'make' ${{ (matrix.os == 'macos-14' || matrix.os == 'macos-15') && 'brew install gettext gmp openssl@3' || 'brew install gmp openssl@3' }}
312+
./build-on.sh '${{ env.package }}' '' 'make' ${{ (matrix.os == 'macos-14' || matrix.os == 'macos-15' || matrix.os == 'macos-26') && 'brew install gettext gmp openssl@3' || 'brew install gmp openssl@3' }}
313313
# Doc: https://docs.github.com/en/actions/using-workflows/storing-workflow-data-as-artifacts
314314
# https://github.com/actions/upload-artifact?tab=readme-ov-file#usage
315315
- if: ${{ always() }}

0 commit comments

Comments
 (0)