Skip to content

Commit

Permalink
Add debug checks
Browse files Browse the repository at this point in the history
  • Loading branch information
rgommers committed Oct 31, 2023
1 parent 783e02f commit f8f9edf
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/linux_blas.yml
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,12 @@ jobs:
pip install --break-system-packages pytest pytest-xdist hypothesis typing_extensions
- name: Build
run: spin build -- -Dblas=blas -Dlapack=lapack -Ddisable-optimization=true
run: |
ls /usr/bin/*blas*
ls /usr/bin/*lapack*
pkg-config --libs blas
pkg-config --cflags blas
spin build -- -Dblas=blas -Dlapack=lapack -Ddisable-optimization=true
- name: Test
run: spin test -j auto -- numpy/linalg
Expand Down

0 comments on commit f8f9edf

Please sign in to comment.