From 505f06d97327ee1179cba5aa271a710039c08cc4 Mon Sep 17 00:00:00 2001 From: Filip Tibell Date: Mon, 11 Sep 2023 13:21:28 -0500 Subject: [PATCH] Add missing build tooling in CI for arm linux --- .github/workflows/ci.yaml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index fee2a06e..4762ecaf 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -67,6 +67,13 @@ jobs: components: clippy targets: ${{ matrix.cargo-target }} + - name: Install build tooling (aarch64-unknown-linux-gnu) + if: matrix.cargo-target == 'aarch64-unknown-linux-gnu' + run: | + sudo apt-get update -y + sudo apt-get install -y musl-tools clang llvm + sudo apt-get install -y gcc-aarch64-linux-gnu g++-aarch64-linux-gnu + - name: Build run: | cargo build \