Swap to using the main rocky repos hosted by fastly - mirrors are being unreliable (#20181)

This commit is contained in:
Chris Marslender
2025-10-21 18:09:43 -05:00
committed by GitHub
parent 0a26924688
commit 054a7322ba
@@ -241,6 +241,16 @@ jobs:
run: |
yum install --assumeyes git
- name: Set rocky8 repo
if: ${{ matrix.distribution.name == 'rockylinux:8' }}
run: |
sed -i -e 's|^mirrorlist=|#mirrorlist=|' -e 's|^#baseurl=http://dl\.rockylinux\.org/|baseurl=https://dl.rockylinux.org/|' /etc/yum.repos.d/Rocky-*.repo
- name: Set rocky9 repo
if: ${{ matrix.distribution.name == 'rockylinux:9' }}
run: |
sed -i -e 's|^mirrorlist=|#mirrorlist=|' -e 's|^#baseurl=http://dl\.rockylinux\.org/|baseurl=https://dl.rockylinux.org/|' /etc/yum.repos.d/rocky-*.repo
- name: Prepare Rocky
if: ${{ matrix.distribution.type == 'rocky' }}
run: |