@cryptotaxi247 / netdata-1 / commits / 57ee9f430

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.

Austin S. Hemmelgarn committed Apr 13, 2020 at 22:26 UTC 57ee9f4303e9496ae6cce214ccf4a54e5bcbda0a
2 files changed +2 -2
.github/workflows/build-and-install.yml
+1 -1
@@ -42,7 +42,7 @@ jobs:
42 pre: 'apk add -U bash'
43
44 - distro: 'archlinux:latest'
45 - pre: 'pacman --noconfirm -Sy grep'
45 + pre: 'pacman --noconfirm -Sy grep libffi'
46
47 - distro: 'debian:bullseye'
48 pre: 'apt-get update'
tests/updater_checks.sh
+1 -1
@@ -52,7 +52,7 @@ case "${running_os}" in
52 ;;
53 "arch")
54 pacman -Sy
55 - pacman --noconfirm --needed -S bash-bats curl
55 + pacman --noconfirm --needed -S bash-bats curl libffi
56 ;;
57 "alpine")
58 apk update