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 3721bfa
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -897,6 +897,8 @@ 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
strategy:
matrix:
mode:
Expand Down Expand Up @@ -1010,6 +1012,8 @@ 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
strategy:
matrix:
mode:
Expand Down
4 changes: 4 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,12 @@ 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
build-macos-x86_64: # job-name skip-aarch64
runs-on: macos-13 # skip-aarch64
env: # skip-aarch64
MACOSX_DEPLOYMENT_TARGET: 10.12 # skip-aarch64
strategy:
matrix:
mode:
Expand Down

0 comments on commit 3721bfa

Please sign in to comment.