Skip to content

Commit

Permalink
install sleef
Browse files Browse the repository at this point in the history
  • Loading branch information
mscroggs committed Sep 18, 2024
1 parent 7b2b3c7 commit 6fcc8f2
Showing 1 changed file with 17 additions and 2 deletions.
19 changes: 17 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,24 @@ jobs:
components: rustfmt

- name: Install OpenBLAS, LAPACK, OpenSSL (yum)
run: yum -y install openblas-devel lapack-devel openssl-devel sleef
run: yum -y install openblas-devel lapack-devel openssl-devel
if: matrix.platform.package-manager == 'yum'
- name: Install OpenBLAS, LAPACK, OpenSSL (apt)
- name: Clone Sleef (yum)
uses: actions/checkout@v4
with:
path: ./sleef
repository: shibatch/sleef
if: matrix.platform.package-manager == 'yum'
- name: Install Sleef (yum)
run: |
yum install -y mpfr
cd sleef
mkdir build
cmake -S . -B build
cmake --build build -j
cmake --install build
if: matrix.platform.package-manager == 'yum'
- name: Install OpenBLAS, LAPACK, OpenSSL, Sleef (apt)
run: apt-get -y install libopenblas-dev liblapack-dev libsleef-dev
if: matrix.platform.package-manager == 'apt'

Expand Down

0 comments on commit 6fcc8f2

Please sign in to comment.