From 2c2e9d46b4412b689f2a375728fc00dbda43448b Mon Sep 17 00:00:00 2001 From: Krzysztof Kozlowski Date: Sun, 27 Aug 2023 11:52:59 +0200 Subject: [PATCH] ci: fix Arch Linux GLIBC_2.38 not found Arch Linux builds can fail if system is not upgraded while installing new packages, probably due to mismatched libraries: clang: /usr/lib/libc.so.6: version `GLIBC_2.38' not found (required by /usr/lib/libstdc++.so.6) Signed-off-by: Krzysztof Kozlowski --- ci/archlinux.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/archlinux.sh b/ci/archlinux.sh index f6a31fc..d128922 100755 --- a/ci/archlinux.sh +++ b/ci/archlinux.sh @@ -16,7 +16,7 @@ case $CC in ;; esac -pacman -Sy --noconfirm \ +pacman -Syu --noconfirm \ libftdi-compat \ libyaml \ systemd-libs \