Skip to content

Commit 0353777

Browse files
authored
ci: run apt update before toolchain installation
1 parent 5b10fe8 commit 0353777

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

.github/workflows/ci.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,11 +63,13 @@ jobs:
6363
- host: ubuntu-latest
6464
target: 'aarch64-unknown-linux-gnu'
6565
setup: |
66+
sudo apt-get update
6667
sudo apt-get install g++-aarch64-linux-gnu gcc-aarch64-linux-gnu -y
6768
build: npx lerna exec "yarn build --target aarch64-unknown-linux-gnu" --concurrency 1 --stream --no-prefix
6869
- host: ubuntu-latest
6970
target: 'armv7-unknown-linux-gnueabihf'
7071
setup: |
72+
sudo apt-get update
7173
sudo apt-get install gcc-arm-linux-gnueabihf g++-arm-linux-gnueabihf -y
7274
build: npx lerna exec "yarn build --target armv7-unknown-linux-gnueabihf" --concurrency 1 --stream --no-prefix
7375
- host: ubuntu-latest

0 commit comments

Comments
 (0)