Skip to content

Commit

Permalink
Support older macOS versions in CI build
Browse files Browse the repository at this point in the history
  • Loading branch information
yume-chan authored and rom1v committed Dec 23, 2024
1 parent 69858c6 commit 623ec06
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -206,6 +206,13 @@ jobs:
libtool
- name: Build
env:
# the default Xcode (and macOS SDK) version can be found at
# <https://github.com/actions/runner-images/blob/main/images/macos/macos-15-Readme.md#xcode>
#
# then the minimal supported deployment target of that macOS SDK can be found at
# <https://developer.apple.com/support/xcode/#minimum-requirements>
MACOSX_DEPLOYMENT_TARGET: 10.13
run: release/build_macos.sh aarch64

# upload-artifact does not preserve permissions
Expand Down Expand Up @@ -242,6 +249,13 @@ jobs:
# autoconf and libtool are already installed on macos-13

- name: Build
env:
# the default Xcode (and macOS SDK) version can be found at
# <https://github.com/actions/runner-images/blob/main/images/macos/macos-13-Readme.md#xcode>
#
# then the minimal supported deployment target of that macOS SDK can be found at
# <https://developer.apple.com/support/xcode/#minimum-requirements>
MACOSX_DEPLOYMENT_TARGET: 10.13
run: release/build_macos.sh x86_64

# upload-artifact does not preserve permissions
Expand Down

0 comments on commit 623ec06

Please sign in to comment.