Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: Set MACOSX_DEPLOYMENT_TARGET to 10.10 for x86_64, 11.0 for arm64 #3253

Merged
merged 1 commit into from
Sep 24, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -335,15 +335,20 @@ jobs:
include:
- target: x86_64-apple-darwin
name: macos
macosx_deployment_target: "10.10"
- target: aarch64-apple-darwin
name: macos-aarch64
macosx_deployment_target: "11.0"
- build: binary
pkgname: rav1e
ext: zip
- build: sdk
pkgname: librav1e
ext: tar.gz

env:
MACOSX_DEPLOYMENT_TARGET: ${{ matrix.macosx_deployment_target }}

steps:
- uses: actions/checkout@v3

Expand Down