Skip to content

Commit

Permalink
Add aarch64-unknown-linux-musl build (#87)
Browse files Browse the repository at this point in the history
  • Loading branch information
rjaegers committed Jun 15, 2023
1 parent 1892ba9 commit 654f527
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/rust-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,8 @@ jobs:
include:
- os: ubuntu-22.04
target: x86_64-unknown-linux-musl
- os: ubuntu-22.04
target: aarch64-unknown-linux-musl
- os: macos-12
target: x86_64-apple-darwin
- os: macos-12
Expand All @@ -127,7 +129,7 @@ jobs:
with:
targets: ${{ matrix.target }}
- name: Install musl tools
if: matrix.target == 'x86_64-unknown-linux-musl'
if: matrix.target == 'x86_64-unknown-linux-musl' || matrix.target == 'aarch64-unknown-linux-musl'
run: sudo apt-get install -y musl-tools
- name: Checkout
uses: actions/checkout@v3
Expand Down

0 comments on commit 654f527

Please sign in to comment.