Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Try macos 13 instead of macos-latest
Browse files Browse the repository at this point in the history
tobbi committed Dec 10, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
1 parent b7a60db commit d05cd49
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .ci_scripts/package.sh
Original file line number Diff line number Diff line change
@@ -2,7 +2,7 @@

shopt -s nullglob

if ([ "$OS_NAME" = "macos-10.15" ] || [ "$OS_NAME" = "macos-latest" ]) && [ "$PACKAGE" = "ON" ]; then
if ([ "$OS_NAME" = "macos-10.15" ] || [ "$OS_NAME" = "macos-13" ]) && [ "$PACKAGE" = "ON" ]; then
sudo chmod -R +w /usr/local/Cellar
cpack -G Bundle;
fi
6 changes: 3 additions & 3 deletions .github/workflows/macos.yml
Original file line number Diff line number Diff line change
@@ -31,11 +31,11 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [macos-latest]
os: [macos-13]
build_type: [Debug, Release]
glbinding: [ON, OFF]
include:
- os: macos-latest
- os: macos-13
build_type: Release
glbinding: OFF
release: ON
@@ -49,7 +49,7 @@ jobs:
submodules: recursive

- name: Install macos dependencies
if: ${{ matrix.os == 'macos-latest' }}
if: ${{ matrix.os == 'macos-13' }}
run: |
# Use GLM 1.0.0 as later versions don't build with clang
HOMEBREW_NO_AUTO_UPDATE=1 brew install --formula ./mk/brew/glm.rb --build-from-source

0 comments on commit d05cd49

Please sign in to comment.