Skip to content

Commit

Permalink
Fix macOS version to 13
Browse files Browse the repository at this point in the history
  • Loading branch information
krazijames committed Apr 24, 2024
1 parent f9835ef commit 0a66170
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,19 +44,19 @@ jobs:
post-build: tar -czvf $ARCHIVE_DIR/$ARCHIVE_NAME.tgz -C $OUTPUT_DIR .

- target: osx-arm64-static_lib
runs-on: macos-latest-xlarge
runs-on: macos-13-xlarge
build: ./build-static_lib.sh
post-build: tar -czvf $ARCHIVE_DIR/$ARCHIVE_NAME.tgz -C $OUTPUT_DIR .

- target: osx-universal2-static_lib
runs-on: macos-latest-xlarge
runs-on: macos-13-xlarge
build: >
CMAKE_OPTIONS="-D CMAKE_OSX_ARCHITECTURES=arm64;x86_64"
./build-static_lib.sh
post-build: tar -czvf $ARCHIVE_DIR/$ARCHIVE_NAME.tgz -C $OUTPUT_DIR .

- target: osx-x86_64-static_lib
runs-on: macos-latest
runs-on: macos-13
build: ./build-static_lib.sh
post-build: tar -czvf $ARCHIVE_DIR/$ARCHIVE_NAME.tgz -C $OUTPUT_DIR .

Expand Down

0 comments on commit 0a66170

Please sign in to comment.