From 6e7bbc1c7819df94323c6649eb7f89205f32c2be Mon Sep 17 00:00:00 2001 From: Mahor Foruzesh Date: Tue, 9 Jul 2024 08:03:02 +0000 Subject: [PATCH] build: attempt to fix ci on aarch64 1 --- .github/workflows/ci.yaml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 8333b8b..1b07fbb 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -112,6 +112,15 @@ jobs: with: targets: ${{ matrix.target }} + - name: Install prerequisites + shell: bash + run: | + case ${{ matrix.target }} in + aarch64-unknown-linux-*) + sudo apt-get -y update + sudo apt-get -y install gcc-aarch64-linux-gnu;; + esac + - name: Check build if: success() || failure() id: cargo-check