Skip to content

Commit

Permalink
Lower macOS deployment target
Browse files Browse the repository at this point in the history
  • Loading branch information
theRookieCoder authored Oct 18, 2024
1 parent 6447682 commit d9a1017
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,12 +64,16 @@ jobs:

- name: Build macOS Intel
if: matrix.os == 'macos-latest'
env:
MACOSX_DEPLOYMENT_TARGET: 10.12 # Sierra
run: |
cargo build --target=x86_64-apple-darwin --release
zip -r out/ferium-macos-x64.zip -j target/x86_64-apple-darwin/release/ferium
- name: Build macOS ARM
if: matrix.os == 'macos-latest'
env:
MACOSX_DEPLOYMENT_TARGET: 11.0 # Big Sur
run: |
cargo build --target=aarch64-apple-darwin --release
zip -r out/ferium-macos-arm.zip -j target/aarch64-apple-darwin/release/ferium
Expand Down

0 comments on commit d9a1017

Please sign in to comment.