File tree Expand file tree Collapse file tree 4 files changed +39
-32
lines changed Expand file tree Collapse file tree 4 files changed +39
-32
lines changed Original file line number Diff line number Diff line change 1
- name : " lax / intel-mkl"
1
+ name : intel-mkl
2
2
3
3
on :
4
4
push :
@@ -25,20 +25,54 @@ jobs:
25
25
--no-default-features
26
26
--features=${{ matrix.feature }}
27
27
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
+
28
48
linux :
29
49
strategy :
30
50
fail-fast : false
31
51
matrix :
32
52
feature :
33
53
- mkl-static-lp64-iomp
34
54
- mkl-static-lp64-seq
55
+ - mkl-dynamic-lp64-iomp
56
+ - mkl-dynamic-lp64-seq
35
57
runs-on : ubuntu-18.04
36
58
steps :
37
59
- uses : actions/checkout@v1
38
60
- 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
39
71
with :
40
72
command : test
41
73
args : >
42
74
--manifest-path=lax/Cargo.toml
43
75
--no-default-features
44
76
--features=${{ matrix.feature }}
77
+ --doc
78
+ if : ${{ matrix.feature =~ 'mkl-static' }}
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1
- name : lax/ netlib
1
+ name : netlib
2
2
3
3
on :
4
4
push :
30
30
with :
31
31
command : test
32
32
args : >
33
- --manifest-path=lax /Cargo.toml
33
+ --manifest-path=ndarray-linalg /Cargo.toml
34
34
--no-default-features
35
35
--features=netlib-${{ matrix.feature }}
Original file line number Diff line number Diff line change 1
- name : lax/ openblas
1
+ name : openblas
2
2
3
3
on :
4
4
push :
30
30
with :
31
31
command : test
32
32
args : >
33
- --manifest-path=lax /Cargo.toml
33
+ --manifest-path=ndarray-linalg /Cargo.toml
34
34
--no-default-features
35
35
--features=openblas-${{ matrix.feature }}
You can’t perform that action at this time.
0 commit comments