Skip to content

Commit d9a1017

Browse files
Lower macOS deployment target
1 parent 6447682 commit d9a1017

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

.github/workflows/build.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,12 +64,16 @@ jobs:
6464

6565
- name: Build macOS Intel
6666
if: matrix.os == 'macos-latest'
67+
env:
68+
MACOSX_DEPLOYMENT_TARGET: 10.12 # Sierra
6769
run: |
6870
cargo build --target=x86_64-apple-darwin --release
6971
zip -r out/ferium-macos-x64.zip -j target/x86_64-apple-darwin/release/ferium
7072
7173
- name: Build macOS ARM
7274
if: matrix.os == 'macos-latest'
75+
env:
76+
MACOSX_DEPLOYMENT_TARGET: 11.0 # Big Sur
7377
run: |
7478
cargo build --target=aarch64-apple-darwin --release
7579
zip -r out/ferium-macos-arm.zip -j target/aarch64-apple-darwin/release/ferium

0 commit comments

Comments
 (0)