aboutsummaryrefslogtreecommitdiffhomepage
path: root/.github
diff options
context:
space:
mode:
authorAyke van Laethem <[email protected]>2022-06-23 22:25:39 +0200
committerRon Evans <[email protected]>2022-06-23 23:16:09 +0200
commit6dff85c756ca571e7e6b11263a310323fb367593 (patch)
tree7d1488c2a4a66806d174c1447190733f83176b40 /.github
parentafae6b37956cb508a82ee9b7bc8b3a19ba504cbe (diff)
downloadtinygo-6dff85c756ca571e7e6b11263a310323fb367593.tar.gz
tinygo-6dff85c756ca571e7e6b11263a310323fb367593.zip
ci: fix CI failure due to missing apt-get update
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/linux.yml2
1 files changed, 2 insertions, 0 deletions
diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml
index ae77fe516..cb800d1a7 100644
--- a/.github/workflows/linux.yml
+++ b/.github/workflows/linux.yml
@@ -261,6 +261,7 @@ jobs:
uses: actions/checkout@v2
- name: Install apt dependencies
run: |
+ sudo apt-get update
sudo apt-get install --no-install-recommends \
qemu-user \
g++-arm-linux-gnueabihf \
@@ -363,6 +364,7 @@ jobs:
uses: actions/checkout@v2
- name: Install apt dependencies
run: |
+ sudo apt-get update
sudo apt-get install --no-install-recommends \
qemu-user \
g++-aarch64-linux-gnu \