Skip to content

Commit

Permalink
ci(macos): add MACOSX_DEPLOYMENT_TARGET and friends
Browse files Browse the repository at this point in the history
  • Loading branch information
rami3l committed Mar 13, 2024
1 parent 46327d7 commit 0e7df4d
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -897,6 +897,9 @@ jobs:
# Do not edit this file in .github/workflows
build-macos-x86_64: # job-name skip-aarch64
runs-on: macos-13 # skip-aarch64
env: # skip-aarch64
MACOSX_DEPLOYMENT_TARGET: 10.12 # skip-aarch64
MACOSX_STD_DEPLOYMENT_TARGET: 10.12 # skip-aarch64
strategy:
matrix:
mode:
Expand Down Expand Up @@ -1010,6 +1013,9 @@ jobs:
# Do not edit this file in .github/workflows
build-macos-aarch64: # job-name skip-x86_64
runs-on: macos-14 # skip-x86_64
env: # skip-x86_64
MACOSX_DEPLOYMENT_TARGET: 11.0 # skip-x86_64
MACOSX_STD_DEPLOYMENT_TARGET: 11.0 # skip-x86_64
strategy:
matrix:
mode:
Expand Down
6 changes: 6 additions & 0 deletions ci/actions-templates/macos-builds-template.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,14 @@ jobs: # skip-x86_64 skip-aarch64
# Do not edit this file in .github/workflows
build-macos-aarch64: # job-name skip-x86_64
runs-on: macos-14 # skip-x86_64
env: # skip-x86_64
MACOSX_DEPLOYMENT_TARGET: 11.0 # skip-x86_64
MACOSX_STD_DEPLOYMENT_TARGET: 11.0 # skip-x86_64
build-macos-x86_64: # job-name skip-aarch64
runs-on: macos-13 # skip-aarch64
env: # skip-aarch64
MACOSX_DEPLOYMENT_TARGET: 10.12 # skip-aarch64
MACOSX_STD_DEPLOYMENT_TARGET: 10.12 # skip-aarch64
strategy:
matrix:
mode:
Expand Down

0 comments on commit 0e7df4d

Please sign in to comment.