From e4766e7d9016f3e09523565ba3ab78217b4733b7 Mon Sep 17 00:00:00 2001 From: Vincent Young Date: Sat, 17 Feb 2024 21:25:45 -0500 Subject: [PATCH] ci: support apple aarch64 (#294) --- .github/workflows/release.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index c42762f3..48a60cb3 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -70,6 +70,11 @@ jobs: target: x86_64-apple-darwin exe: rathole cross: false + + - os: macos-latest + target: aarch64-apple-darwin + exe: rathole + cross: false - os: windows-latest target: x86_64-pc-windows-msvc @@ -96,7 +101,7 @@ jobs: if: matrix.cross == false run: rustup target add ${{ matrix.target }} - name: Run tests - if: matrix.cross == false + if: matrix.cross == false && matrix.target != 'aarch64-apple-darwin' run: cargo test --release --target ${{ matrix.target }} --verbose - name: Build release if: matrix.cross == false