From 049a2b75b2850068487f1d6f650164882fcaa134 Mon Sep 17 00:00:00 2001 From: "Sergey \"Shnatsel\" Davidoff" Date: Wed, 24 Sep 2025 15:11:20 +0100 Subject: [PATCH] Run apt-get update before trying to install packages --- .github/workflows/linux.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index 41c31b4..26ec678 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -30,7 +30,7 @@ jobs: AUDITABLE_TEST_TARGET: "x86_64-unknown-linux-musl" run: cargo test --all-features --workspace - name: "Install the 32-bit GCC toolchain" - run: sudo apt-get install gcc-multilib + run: sudo apt-get update && sudo apt-get install gcc-multilib - name: "Test cross-compiling to i686-unknown-linux-gnu" env: AUDITABLE_TEST_TARGET: "i686-unknown-linux-gnu"