File tree Expand file tree Collapse file tree 1 file changed +34
-0
lines changed Expand file tree Collapse file tree 1 file changed +34
-0
lines changed Original file line number Diff line number Diff line change 16
16
cargo test -v --features=openblas,serde-1 --no-default-features
17
17
displayName: run test
18
18
19
+ - job : LinuxStaticOpenBLAS
20
+ pool :
21
+ vmImage : ' ubuntu-16.04'
22
+ steps :
23
+ - script : |
24
+ curl -sSf https://sh.rustup.rs | sh -s -- -y
25
+ echo "##vso[task.setvariable variable=PATH;]$PATH:$HOME/.cargo/bin"
26
+ displayName: install rustup
27
+ - script : |
28
+ sudo apt-get update
29
+ sudo apt-get install -y gfortran
30
+ displayName: apt install
31
+ - script : |
32
+ cargo test -v --features=openblas-static --no-default-features
33
+ cargo test -v --features=openblas-static,serde-1 --no-default-features
34
+ displayName: run test
35
+
19
36
- job : LinuxNetlib
20
37
pool :
21
38
vmImage : ' ubuntu-16.04'
33
50
cargo test -v --features=netlib,serde-1 --no-default-features
34
51
displayName: run test
35
52
53
+ - job : LinuxStaticNetlib
54
+ pool :
55
+ vmImage : ' ubuntu-16.04'
56
+ steps :
57
+ - script : |
58
+ curl -sSf https://sh.rustup.rs | sh -s -- -y
59
+ echo "##vso[task.setvariable variable=PATH;]$PATH:$HOME/.cargo/bin"
60
+ displayName: install rustup
61
+ - script : |
62
+ sudo apt-get update
63
+ sudo apt-get install -y cmake gfortran
64
+ displayName: apt install
65
+ - script : |
66
+ cargo test -v --features=netlib-static --no-default-features
67
+ cargo test -v --features=netlib-static,serde-1 --no-default-features
68
+ displayName: run test
69
+
36
70
- job : LinuxIntelMKL
37
71
pool :
38
72
vmImage : ' ubuntu-16.04'
You can’t perform that action at this time.
0 commit comments