summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorBrooks J Rady <b.j.rady@gmail.com>2021-04-27 18:52:05 +0100
committerBrooks J Rady <b.j.rady@gmail.com>2021-04-27 18:52:05 +0100
commitfd56d2a1a7305de3c34dc7ffa88f03dc35c7f57b (patch)
tree1c759a81e3061c478277f14498d1884fde12bcf3 /.github
parent9f567f721e8fb483d9b41c625bc55f5954516032 (diff)
feat(ci): add M1 macOS builds
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/release.yml15
1 files changed, 14 insertions, 1 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
index 51d75d398..4744d9f21 100644
--- a/.github/workflows/release.yml
+++ b/.github/workflows/release.yml
@@ -18,6 +18,7 @@ jobs:
- linux musl x64
- linux musl aarch64
- macos x64
+ - macos aarch64
include:
- build: linux musl x64
os: ubuntu-latest
@@ -30,7 +31,11 @@ jobs:
- build: macos x64
os: macos-latest
rust: beta
- target: x86_64-apple-darwin
+ target: x86_64-apple-darwin
+ - build: macos aarch64
+ os: macos-latest
+ rust: beta
+ target: aarch64-apple-darwin
steps:
- name: Set release tag
run: |
@@ -64,6 +69,14 @@ jobs:
- name: Install wasm-opt
run: brew install binaryen
+ # Workaround for <https://github.com/actions/virtual-environments/issues/2557>
+ - name: Switch Xcode SDK
+ if: runner.os == 'macos'
+ run: |
+ cat <<EOF >> "$GITHUB_ENV"
+ SDKROOT=/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk
+ EOF
+
- name: Build release binary
run: cargo make ci-build-release ${{ matrix.target }}