Skip to content

Commit acbd1f2

Browse files
committed
linux test openmp
1 parent 3b19ffd commit acbd1f2

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

.github/workflows/build.yaml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,9 +55,9 @@ jobs:
5555
fail-fast: false
5656
matrix:
5757
backends: [ ruy, mkl, openblas ]
58-
openmp: [ "", openmp ]
58+
# openmp: [ "", openmp ]
5959
# backends: [ mkl ]
60-
# openmp: [ "" ]
60+
openmp: [ openmp ]
6161
runs-on: ubuntu-latest
6262
env:
6363
LIBRARY_PATH: /usr/lib/x86_64-linux-gnu
@@ -92,7 +92,9 @@ jobs:
9292
- name: Build
9393
run: cargo build -vv --no-default-features -F "${{ matrix.backends }} ${{ matrix.openmp }}"
9494
- name: Run tests
95-
run: cargo test -vv --no-default-features -F "${{ matrix.backends }} ${{ matrix.openmp }}"
95+
run: |
96+
ls -l /usr/lib/llvm-14/lib
97+
cargo test -vv --no-default-features -F "${{ matrix.backends }} ${{ matrix.openmp }}"
9698
#
9799
# build-windows:
98100
# strategy:

0 commit comments

Comments
 (0)