From cba8a05c822163900c0aec93ec2fda62fdb6edbc Mon Sep 17 00:00:00 2001 From: Jiahao XU Date: Mon, 30 May 2022 17:18:42 +1000 Subject: [PATCH] Fix job "Install cross toolchain (armv7)" Install "gcc-arm-linux-gnueabihf" as "gcc-arm-linux-musleabihf" does not exist. Also use `apt-get` instead of `apt`. Signed-off-by: Jiahao XU --- .github/workflows/rust.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index baac949a..250798ef 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -66,7 +66,7 @@ jobs: - name: Install cross toolchain (armv7) if: ${{ matrix.target == 'armv7-unknown-linux-musleabihf' }} - run: sudo apt install gcc-arm-linux-musleabihf + run: sudo apt-get install gcc-arm-linux-gnueabihf - name: Enable cross compilation (armv7) if: ${{ matrix.target == 'armv7-unknown-linux-musleabihf' }}