Skip to content

Commit e23e96f

Browse files
committed
Fix
1 parent 0ff6d1f commit e23e96f

File tree

4 files changed

+39
-32
lines changed

4 files changed

+39
-32
lines changed

.github/workflows/intel-mkl.yml

Lines changed: 35 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: "lax / intel-mkl"
1+
name: intel-mkl
22

33
on:
44
push:
@@ -25,20 +25,54 @@ jobs:
2525
--no-default-features
2626
--features=${{ matrix.feature }}
2727
28+
macos:
29+
strategy:
30+
fail-fast: false
31+
matrix:
32+
feature:
33+
- mkl-dynamic-lp64-iomp
34+
- mkl-dynamic-lp64-seq
35+
runs-on: macos-10.15
36+
steps:
37+
- uses: actions/checkout@v1
38+
- uses: actions-rs/cargo@v1
39+
name: cargo test --all-targets
40+
with:
41+
command: test
42+
args: >
43+
--manifest-path=lax/Cargo.toml
44+
--no-default-features
45+
--features=${{ matrix.feature }}
46+
--all-targets
47+
2848
linux:
2949
strategy:
3050
fail-fast: false
3151
matrix:
3252
feature:
3353
- mkl-static-lp64-iomp
3454
- mkl-static-lp64-seq
55+
- mkl-dynamic-lp64-iomp
56+
- mkl-dynamic-lp64-seq
3557
runs-on: ubuntu-18.04
3658
steps:
3759
- uses: actions/checkout@v1
3860
- uses: actions-rs/cargo@v1
61+
name: cargo test --all-targets
62+
with:
63+
command: test
64+
args: >
65+
--manifest-path=lax/Cargo.toml
66+
--no-default-features
67+
--features=${{ matrix.feature }}
68+
--all-targets
69+
- uses: actions-rs/cargo@v1
70+
name: cargo test --doc
3971
with:
4072
command: test
4173
args: >
4274
--manifest-path=lax/Cargo.toml
4375
--no-default-features
4476
--features=${{ matrix.feature }}
77+
--doc
78+
if: ${{ matrix.feature =~ 'mkl-static' }}

.github/workflows/ndarray-linalg.yml

Lines changed: 0 additions & 27 deletions
This file was deleted.

.github/workflows/netlib.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: lax/netlib
1+
name: netlib
22

33
on:
44
push:
@@ -30,6 +30,6 @@ jobs:
3030
with:
3131
command: test
3232
args: >
33-
--manifest-path=lax/Cargo.toml
33+
--manifest-path=ndarray-linalg/Cargo.toml
3434
--no-default-features
3535
--features=netlib-${{ matrix.feature }}

.github/workflows/openblas.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: lax/openblas
1+
name: openblas
22

33
on:
44
push:
@@ -30,6 +30,6 @@ jobs:
3030
with:
3131
command: test
3232
args: >
33-
--manifest-path=lax/Cargo.toml
33+
--manifest-path=ndarray-linalg/Cargo.toml
3434
--no-default-features
3535
--features=openblas-${{ matrix.feature }}

0 commit comments

Comments
 (0)