From a0766bc33379ce586482ef8166d35250f0cc5b8c Mon Sep 17 00:00:00 2001 From: flxkrmr <8393480+flxkrmr@users.noreply.github.com> Date: Sat, 14 Dec 2024 11:40:51 +0100 Subject: [PATCH] Change pipeline for debian --- .github/workflows/rpi.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/rpi.yml b/.github/workflows/rpi.yml index 264268e..8d7887f 100644 --- a/.github/workflows/rpi.yml +++ b/.github/workflows/rpi.yml @@ -19,7 +19,7 @@ jobs: - name: Checkout Repository uses: actions/checkout@v3 - - run: sudo apt-get update && sudo apt-get install -y rustup + - run: apt-get update && apt-get install -y rustup - run: rustup default stable - name: Rust build and test @@ -31,7 +31,7 @@ jobs: toolchain: stable target: arm-unknown-linux-gnueabihf - run: rustup target add arm-unknown-linux-gnueabihf - - run: sudo apt-get update && sudo apt-get install -y gcc-arm-linux-gnueabihf libc6-dev-armhf-cross + - run: apt-get install -y gcc-arm-linux-gnueabihf libc6-dev-armhf-cross - name: Build cross-compilation binary run: cargo build --release --target=arm-unknown-linux-gnueabihf