Skip to content

Commit

Permalink
disable system blas/lapack on linux CI
Browse files Browse the repository at this point in the history
  • Loading branch information
lkeegan committed Jan 17, 2024
1 parent abd0d75 commit 9bee1d2
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,10 @@ jobs:
sudo update-alternatives --remove-all clang++ || echo "nothing to remove"
sudo update-alternatives --install /usr/bin/clang clang /usr/bin/clang-17 100
sudo update-alternatives --install /usr/bin/clang++ clang++ /usr/bin/clang++-17 100
- name: Disable system blas/lapack
run: |
sudo rm /usr/lib/x86_64-linux-gnu/libblas*
sudo rm /usr/lib/x86_64-linux-gnu/libblapack*
- uses: actions/checkout@v4
- name: Build script
run: ./build.sh
Expand Down

0 comments on commit 9bee1d2

Please sign in to comment.