From 7981a9f6a2679a1f56f5f57808d6e5a4d7b4fffe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michael=20F=C3=A4rber?= <01mf02@gmail.com> Date: Tue, 31 Oct 2023 12:30:01 +0100 Subject: [PATCH] Revert "Do not install OS-specific prerequisites for release builds." This reverts commit 4fedd6d741ff9a2ef072e453265d1a0fa521e366. --- .github/workflows/release.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index da321dc1..560df8c5 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -58,6 +58,14 @@ jobs: steps: - uses: actions/checkout@v3 + - name: Install ARM/Linux prerequisites + if: startsWith(matrix.target, 'arm-unknown-linux-') + run: sudo apt-get -y install gcc-arm-linux-gnueabihf + + - name: Install AArch64/Linux prerequisites + if: matrix.target == 'aarch64-unknown-linux-gnu' + run: sudo apt-get -y install gcc-aarch64-linux-gnu + - name: Install Rust toolchain uses: dtolnay/rust-toolchain@stable with: