From b23582533dad4ccb8a96098bd6a48b3cfd7abe71 Mon Sep 17 00:00:00 2001 From: Ron <45816308+rjaegers@users.noreply.github.com> Date: Thu, 15 Jun 2023 10:49:06 +0200 Subject: [PATCH] Add aarch64-unknown-linux-musl build --- .github/workflows/rust-ci.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/rust-ci.yml b/.github/workflows/rust-ci.yml index f55818a..86d41aa 100644 --- a/.github/workflows/rust-ci.yml +++ b/.github/workflows/rust-ci.yml @@ -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 @@ -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