diff options
author | Blaž Hrastnik | 2021-06-07 00:19:51 +0000 |
---|---|---|
committer | Blaž Hrastnik | 2021-06-07 00:19:51 +0000 |
commit | 582f1ee9d897da99ea2248e506da5cfd99616435 (patch) | |
tree | d99e2583698ecb1fafd0bd3fd6f3ab82a0afdfe8 | |
parent | e2d780f993201a79261bc6bd869c8b4f1dc410ce (diff) |
Add aarch64-macos (M1) to the release build matrix
-rw-r--r-- | .github/workflows/release.yml | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index ff4f5a24..80e6b78f 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -15,7 +15,7 @@ jobs: strategy: fail-fast: false # don't fail other jobs if one fails matrix: - build: [x86_64-linux, aarch64-linux, x86_64-macos, x86_64-windows] #, x86_64-win-gnu, win32-msvc + build: [x86_64-linux, aarch64-linux, x86_64-macos, aarch64-macos, x86_64-windows] #, x86_64-win-gnu, win32-msvc include: - build: x86_64-linux os: ubuntu-20.04 @@ -37,6 +37,10 @@ jobs: rust: stable target: x86_64-pc-windows-msvc cross: false + - build: aarch64-macos + os: macos-latest + rust: stable + target: aarch64-apple-darwin # - build: x86_64-win-gnu # os: windows-2019 # rust: stable-x86_64-gnu |