diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index af3ffcc..91f49bc 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -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' diff --git a/docs/install.sh b/docs/install.sh index 09059a1..c9b2fe8 100755 --- a/docs/install.sh +++ b/docs/install.sh @@ -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;;