File tree Expand file tree Collapse file tree 1 file changed +16
-12
lines changed Expand file tree Collapse file tree 1 file changed +16
-12
lines changed Original file line number Diff line number Diff line change 8
8
9
9
jobs :
10
10
windows :
11
- strategy :
12
- fail-fast : false
13
- matrix :
14
- feature :
15
- - intel-mkl-static
16
11
runs-on : windows-2019
17
12
steps :
18
13
- uses : actions/checkout@v1
22
17
args : >
23
18
--manifest-path=ndarray-linalg/Cargo.toml
24
19
--no-default-features
25
- --features=${{ matrix.feature }}
20
+ --features=intel-mkl-static
26
21
27
22
linux :
28
- strategy :
29
- fail-fast : false
30
- matrix :
31
- feature :
32
- - intel-mkl-static
33
23
runs-on : ubuntu-18.04
34
24
steps :
35
25
- uses : actions/checkout@v1
40
30
args : >
41
31
--manifest-path=ndarray-linalg/Cargo.toml
42
32
--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
You can’t perform that action at this time.
0 commit comments