From dfebb3e9b63c01c7acf31cc24013cf96168ff85b Mon Sep 17 00:00:00 2001 From: Pat Hickey Date: Wed, 27 Oct 2021 12:01:13 -0700 Subject: [PATCH] CI Check job: run `apt-get update` before `apt-get install` trying to fix https://github.com/bytecodealliance/wasmtime/runs/4025939586?check_suite_focus=true --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 896bf764d0..422e2720cc 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -162,7 +162,7 @@ jobs: - run: | rustup target add wasm32-unknown-emscripten rustup target add armv7-unknown-linux-gnueabihf - sudo apt-get install -y gcc-arm-linux-gnueabihf + sudo apt-get update && sudo apt-get install -y gcc-arm-linux-gnueabihf - run: cargo check --target wasm32-unknown-emscripten -p wasi-common - run: cargo check --target armv7-unknown-linux-gnueabihf -p wasi-common