We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6447682 commit d9a1017Copy full SHA for d9a1017
.github/workflows/build.yml
@@ -64,12 +64,16 @@ jobs:
64
65
- name: Build macOS Intel
66
if: matrix.os == 'macos-latest'
67
+ env:
68
+ MACOSX_DEPLOYMENT_TARGET: 10.12 # Sierra
69
run: |
70
cargo build --target=x86_64-apple-darwin --release
71
zip -r out/ferium-macos-x64.zip -j target/x86_64-apple-darwin/release/ferium
72
73
- name: Build macOS ARM
74
75
76
+ MACOSX_DEPLOYMENT_TARGET: 11.0 # Big Sur
77
78
cargo build --target=aarch64-apple-darwin --release
79
zip -r out/ferium-macos-arm.zip -j target/aarch64-apple-darwin/release/ferium
0 commit comments