Skip to content

Commit

Permalink
Merge pull request #4304 from kolyshkin/cs8eol
Browse files Browse the repository at this point in the history
ci: workaround for centos stream 8 being EOLed
  • Loading branch information
AkihiroSuda authored Jun 4, 2024
2 parents 66379d9 + 48c4e73 commit 3e8f48d
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .cirrus.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 3e8f48d

Please sign in to comment.