File tree Expand file tree Collapse file tree 3 files changed +57
-65
lines changed Expand file tree Collapse file tree 3 files changed +57
-65
lines changed Original file line number Diff line number Diff line change
1
+ name : Rust
2
+
3
+ on :
4
+ push :
5
+ branches :
6
+ - master
7
+ pull_request : {}
8
+
9
+ jobs :
10
+ windows-intel-mkl :
11
+ runs-on : windows-2019
12
+ steps :
13
+ - uses : actions/checkout@v1
14
+ - uses : actions-rs/cargo@v1
15
+ with :
16
+ command : test
17
+ args : --features=intel-mkl --no-default-features
18
+
19
+ macos-intel-mkl :
20
+ runs-on : macos-10.15
21
+ steps :
22
+ - uses : actions/checkout@v1
23
+ - uses : actions-rs/cargo@v1
24
+ with :
25
+ command : test
26
+ args : --features=intel-mkl --no-default-features
27
+
28
+ linux-intel-mkl :
29
+ runs-on : ubuntu-18.04
30
+ steps :
31
+ - uses : actions/checkout@v1
32
+ - uses : actions-rs/cargo@v1
33
+ with :
34
+ command : test
35
+ args : --features=intel-mkl --no-default-features
36
+
37
+ linux-netlib :
38
+ runs-on : ubuntu-18.04
39
+ steps :
40
+ - uses : actions/checkout@v1
41
+ - name : apt
42
+ run : sudo apt update && sudo apt install -y gfortran
43
+ - uses : actions-rs/cargo@v1
44
+ with :
45
+ command : test
46
+ args : --features=netlib --no-default-features
47
+
48
+ linux-openblas :
49
+ runs-on : ubuntu-18.04
50
+ steps :
51
+ - uses : actions/checkout@v1
52
+ - name : apt
53
+ run : sudo apt update && sudo apt install -y gfortran
54
+ - uses : actions-rs/cargo@v1
55
+ with :
56
+ command : test
57
+ args : --features=openblas --no-default-features
Original file line number Diff line number Diff line change @@ -2,7 +2,6 @@ ndarray-linalg
2
2
===============
3
3
[ ![ Crate] ( http://meritbadge.herokuapp.com/ndarray-linalg )] ( https://crates.io/crates/ndarray-linalg )
4
4
[ ![ docs.rs] ( https://docs.rs/ndarray-linalg/badge.svg )] ( https://docs.rs/ndarray-linalg )
5
- [ ![ Build Status] ( https://dev.azure.com/rust-ndarray/ndarray-linalg/_apis/build/status/rust-ndarray.ndarray-linalg?branchName=master )] ( https://dev.azure.com/rust-ndarray/ndarray-linalg/_build/latest?definitionId=1&branchName=master )
6
5
7
6
Linear algebra package for Rust with [ ndarray] ( https://github.com/bluss/ndarray ) based on external LAPACK implementations.
8
7
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments