Skip to content

Commit

Permalink
Attempt a different approach to yum
Browse files Browse the repository at this point in the history
  • Loading branch information
gadial committed Feb 3, 2025
1 parent a519fe6 commit 5eca021
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,12 @@ jobs:
env:
CIBW_ARCHS_LINUX: s390x
CIBW_TEST_SKIP: "cp*"
CIBW_BEFORE_ALL: "sed -i -e 's/^mirrorlist/#mirrorlist/' -e 's/^#baseurl/baseurl/' -e 's/mirror.centos.org/vault.centos.org/' /etc/yum.repos.d/*.repo && yum install -y openblas-devel"
CIBW_BEFORE_ALL: |
yum clean all
yum-config-manager --disable clefos-rh
yum makecache
yum install -y https://dl.fedoraproject.org/pub/epel/8/Everything/s390x/Packages/e/epel-release-8-21.el8.noarch.rpm
yum install -y openblas-devel
run: |
python -m cibuildwheel --output-dir wheelhouse
- uses: actions/upload-artifact@v4
Expand Down

0 comments on commit 5eca021

Please sign in to comment.