aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.github/workflows/release.yml7
1 files changed, 6 insertions, 1 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
index c42762f..48a60cb 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