Skip to content

Commit

Permalink
Build MacOS ARM release binaries (#1138)
Browse files Browse the repository at this point in the history
  • Loading branch information
casey authored Mar 23, 2022
1 parent 9da8f41 commit cc91485
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,16 @@ jobs:
strategy:
matrix:
target:
- aarch64-apple-darwin
- aarch64-unknown-linux-musl
- armv7-unknown-linux-musleabihf
- x86_64-apple-darwin
- x86_64-pc-windows-msvc
- x86_64-unknown-linux-musl
include:
- target: aarch64-apple-darwin
os: macos-latest
target_rustflags: ''
- target: aarch64-unknown-linux-musl
os: ubuntu-latest
target_rustflags: '--codegen linker=aarch64-linux-gnu-gcc'
Expand Down
1 change: 1 addition & 0 deletions docs/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,7 @@ if [ -z ${target-} ]; then

case $uname_target in
aarch64-Linux) target=aarch64-unknown-linux-musl;;
arm64-Darwin) target=aarch64-apple-darwin;;
x86_64-Darwin) target=x86_64-apple-darwin;;
x86_64-Linux) target=x86_64-unknown-linux-musl;;
x86_64-Windows_NT) target=x86_64-pc-windows-msvc;;
Expand Down

0 comments on commit cc91485

Please sign in to comment.