Skip to content

Commit 0aa1e96

Browse files
committed
fix(ci): add apt update before libffi
1 parent 44b6317 commit 0aa1e96

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/tests.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,10 @@ jobs:
3737
- name: "Build libfaasmpi"
3838
run: ./bin/inv_wrapper.sh libfaasmpi
3939
- name: "Build libffi"
40-
run: ./bin/inv_wrapper.sh libffi
40+
run: |
41+
# For some reason, libffi necessitates running apt update.
42+
apt update
43+
./bin/inv_wrapper.sh libffi
4144
- name: "Build libfake"
4245
run: ./bin/inv_wrapper.sh libfake
4346
- name: "Build libemscripten"

0 commit comments

Comments
 (0)