Skip to content

Commit

Permalink
modify centos repo
Browse files Browse the repository at this point in the history
  • Loading branch information
Water-Melon committed Sep 20, 2024
1 parent 19b1e2e commit bd60142
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,23 @@ jobs:
options: --privileged

steps:
- name: modify centos repo
if: matrix.package == 'rpm' && matrix.image == 'centos:7'
run: |
# Replace all occurrences of mirror.centos.org with vault.centos.org in all .repo files
for repo_file in /etc/yum.repos.d/*.repo; do
sed -i 's|mirror.centos.org|vault.centos.org|g' "$repo_file"
done
yum clean all
yum makecache
yum install -y centos-release-scl
yum install -y devtoolset-9
scl enable devtoolset-9 bash
gcc --version
strings /opt/rh/devtoolset-9/root/usr/lib64/libstdc++.so.6 | grep GLIBCXX
yum install -y nodejs
node -v
- name: Early Rpm Setup
if: matrix.package == 'rpm' && matrix.image != ''
run: |
Expand Down

0 comments on commit bd60142

Please sign in to comment.