summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorAustin S. Hemmelgarn <austin@netdata.cloud>2020-04-13 22:26:53 -0400
committerGitHub <noreply@github.com>2020-04-14 12:26:53 +1000
commit57ee9f4303e9496ae6cce214ccf4a54e5bcbda0a (patch)
tree794eea02074f8a3d605c3cf37dcf5ca67ce710a2 /.github
parent983a26d1a2c110b35db252b4b79c3f03eb4eeb4b (diff)
Explicitly include libffi on ArchLinux CI tests. (#8699)
The `make` command depends on it but does not pull it in as a dependency. This isn't likely to affect user systems in most cases as they will almost certainly have Python installed, which also depends on libffi and pulls it in correctly. This is a workaround for an upstream bug in Arch.
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/build-and-install.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/build-and-install.yml b/.github/workflows/build-and-install.yml
index 76bd62d3cd..0a30e87723 100644
--- a/.github/workflows/build-and-install.yml
+++ b/.github/workflows/build-and-install.yml
@@ -42,7 +42,7 @@ jobs:
pre: 'apk add -U bash'
- distro: 'archlinux:latest'
- pre: 'pacman --noconfirm -Sy grep'
+ pre: 'pacman --noconfirm -Sy grep libffi'
- distro: 'debian:bullseye'
pre: 'apt-get update'