From 5a7c553eb3ed0db6bbd136cbd189300bf15c946f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Patrick=20F=C3=B6rster?= Date: Mon, 3 Nov 2025 21:36:42 +0100 Subject: [PATCH] Fix cross compilation preparation in CI pipeline --- .github/workflows/publish.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 67be224c..bb320c2b 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -57,7 +57,7 @@ jobs: with: targets: ${{ matrix.target }} - name: Install cross-compilation dependencies - run: sudo apt-get install -y gcc-aarch64-linux-gnu gcc-arm-linux-gnueabihf + run: sudo apt-get update && sudo apt-get install -y gcc-aarch64-linux-gnu gcc-arm-linux-gnueabihf if: ${{ matrix.os == 'ubuntu-22.04' }} - name: Compile run: cargo build --target ${{ matrix.target }} --all-features --release --locked