Skip to content

Commit

Permalink
Use OpenBLAS in Redhat clone CI (#747)
Browse files Browse the repository at this point in the history
* Build Redhat CI in debug mode

* Fix typo

* Change numpy install

* Try 9.2. 9.3 was released a week ago, around the time of this ci fail.

* Install openblas-devel

* Update redhat.yml

* Small updates

* Upgrade pip in CI

* Fix typo

* Remove debug (very slow)

---------

Co-authored-by: Jack S. Hale <[email protected]>
  • Loading branch information
garth-wells and jhale authored Nov 26, 2023
1 parent 15b915b commit 5f88d6a
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/redhat.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ on:
jobs:
build:
name: Build and test (Red Hat)
runs-on: ubuntu-22.04
container: rockylinux/rockylinux:9
runs-on: ubuntu-latest
container: rockylinux/rockylinux:9.2
env:
CC: gcc
CXX: g++
Expand All @@ -31,7 +31,9 @@ jobs:
dnf -y update
dnf install -y dnf-plugins-core
dnf config-manager --set-enabled crb
dnf install -y blas-devel cmake gcc gcc-c++ git lapack-devel python3 python3-devel python3-pip
dnf install -y openblas-devel cmake gcc gcc-c++ git lapack-devel python3 python3-devel python3-pip
- name: Upgrade pip
run: python3 -m pip install pip --upgrade
- uses: actions/checkout@v4
- name: Install Basix
run: python3 -m pip install .[test]
Expand Down

0 comments on commit 5f88d6a

Please sign in to comment.