ci: workaround for centos stream 8 being EOLed

Signed-off-by: Kir Kolyshkin <kolyshkin@gmail.com>
This commit is contained in:
Kir Kolyshkin
2024-06-03 17:15:11 -07:00
parent 66379d9ef1
commit 48c4e733f4
+4
View File
@@ -106,6 +106,10 @@ task:
sysctl --system
;;
centos-stream-8)
# CS8 is EOF. As a temp workaround, fix repo URLs to point to vault.
for f in /etc/yum.repos.d/*.repo; do \
sed -i -e 's,^mirrorlist=,#\0,' -e 's,^#baseurl=http://mirror\.,baseurl=http://vault.,' $f; \
done
yum config-manager --set-enabled powertools # for glibc-static
;;
centos-stream-9)