Skip to content

Commit

Permalink
ci: support apple aarch64 (rapiz1#294)
Browse files Browse the repository at this point in the history
  • Loading branch information
missuo authored Feb 18, 2024
1 parent 6322102 commit e4766e7
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down

0 comments on commit e4766e7

Please sign in to comment.