Skip to content

Commit 318b94d

Browse files
committed
Fix
1 parent bea0853 commit 318b94d

File tree

3 files changed

+5
-11
lines changed

3 files changed

+5
-11
lines changed

.github/workflows/intel-mkl.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
with:
2222
command: test
2323
args: >
24-
--manifest-path=lax/Cargo.toml
24+
--manifest-path=ndarray-linalg/Cargo.toml
2525
--no-default-features
2626
--features=${{ matrix.feature }}
2727
@@ -40,7 +40,7 @@ jobs:
4040
with:
4141
command: test
4242
args: >
43-
--manifest-path=lax/Cargo.toml
43+
--manifest-path=ndarray-linalg/Cargo.toml
4444
--no-default-features
4545
--features=${{ matrix.feature }}
4646
--all-targets
@@ -62,7 +62,7 @@ jobs:
6262
with:
6363
command: test
6464
args: >
65-
--manifest-path=lax/Cargo.toml
65+
--manifest-path=ndarray-linalg/Cargo.toml
6666
--no-default-features
6767
--features=${{ matrix.feature }}
6868
--all-targets
@@ -71,7 +71,7 @@ jobs:
7171
with:
7272
command: test
7373
args: >
74-
--manifest-path=lax/Cargo.toml
74+
--manifest-path=ndarray-linalg/Cargo.toml
7575
--no-default-features
7676
--features=${{ matrix.feature }}
7777
--doc

.github/workflows/netlib.yml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ jobs:
1212
fail-fast: false
1313
matrix:
1414
feature:
15-
- system
1615
- static
1716
runs-on: ubuntu-18.04
1817
steps:
@@ -21,11 +20,6 @@ jobs:
2120
run: |
2221
sudo apt update
2322
sudo apt install -y gfortran
24-
- name: apt install netlib
25-
run: |
26-
sudo apt update
27-
sudo apt install -y libblas-dev liblapack-dev liblapacke-dev
28-
if: ${{ matrix.feature == 'system' }}
2923
- uses: actions-rs/cargo@v1
3024
with:
3125
command: test

.github/workflows/openblas.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
- name: apt install openblas
2525
run: |
2626
sudo apt update
27-
sudo apt install -y libopenblas-dev liblapacke-dev
27+
sudo apt install -y libopenblas-dev
2828
if: ${{ matrix.feature == 'system' }}
2929
- uses: actions-rs/cargo@v1
3030
with:

0 commit comments

Comments
 (0)