Skip to content

Commit 4632cb3

Browse files
committed
Add CI for intel-mkl-system with mkl-rust container
1 parent 6ab2b48 commit 4632cb3

File tree

1 file changed

+16
-12
lines changed

1 file changed

+16
-12
lines changed

.github/workflows/intel-mkl.yml

Lines changed: 16 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,6 @@ on:
88

99
jobs:
1010
windows:
11-
strategy:
12-
fail-fast: false
13-
matrix:
14-
feature:
15-
- intel-mkl-static
1611
runs-on: windows-2019
1712
steps:
1813
- uses: actions/checkout@v1
@@ -22,14 +17,9 @@ jobs:
2217
args: >
2318
--manifest-path=ndarray-linalg/Cargo.toml
2419
--no-default-features
25-
--features=${{ matrix.feature }}
20+
--features=intel-mkl-static
2621
2722
linux:
28-
strategy:
29-
fail-fast: false
30-
matrix:
31-
feature:
32-
- intel-mkl-static
3323
runs-on: ubuntu-18.04
3424
steps:
3525
- uses: actions/checkout@v1
@@ -40,4 +30,18 @@ jobs:
4030
args: >
4131
--manifest-path=ndarray-linalg/Cargo.toml
4232
--no-default-features
43-
--features=${{ matrix.feature }}
33+
--features=intel-mkl-static
34+
35+
linux-container:
36+
runs-on: ubuntu-18.04
37+
container: rustmath/mkl-rust:1.43.0
38+
steps:
39+
- uses: actions/checkout@v1
40+
- uses: actions-rs/cargo@v1
41+
name: cargo test
42+
with:
43+
command: test
44+
args: >
45+
--manifest-path=ndarray-linalg/Cargo.toml
46+
--no-default-features
47+
--features=intel-mkl-system

0 commit comments

Comments
 (0)