Skip to content

Commit a2d83d4

Browse files
author
Pat Hickey
authored
Merge pull request #3481 from bytecodealliance/pch/ci_apt_update_before_install
CI Check job: run `apt-get update` before `apt-get install`
2 parents 49133f6 + dfebb3e commit a2d83d4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ jobs:
162162
- run: |
163163
rustup target add wasm32-unknown-emscripten
164164
rustup target add armv7-unknown-linux-gnueabihf
165-
sudo apt-get install -y gcc-arm-linux-gnueabihf
165+
sudo apt-get update && sudo apt-get install -y gcc-arm-linux-gnueabihf
166166
- run: cargo check --target wasm32-unknown-emscripten -p wasi-common
167167
- run: cargo check --target armv7-unknown-linux-gnueabihf -p wasi-common
168168

0 commit comments

Comments
 (0)