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 11jobs :
2+ - job : LinuxStatic
3+ pool :
4+ vmImage : ' ubuntu-16.04'
5+ steps :
6+ - script : |
7+ curl -sSf https://sh.rustup.rs | sh -s -- -y
8+ echo "##vso[task.setvariable variable=PATH;]$PATH:$HOME/.cargo/bin"
9+ displayName: install rustup
10+ - script : |
11+ sudo apt-get update
12+ sudo apt-get install -y gfortran
13+ displayName: apt install
14+ - script : |
15+ cargo test -v --features=static --no-default-features
16+ cargo test -v --features=static,serde-1 --no-default-features
17+ displayName: run test
18+
219 - job : LinuxOpenBLAS
320 pool :
421 vmImage : ' ubuntu-16.04'
5067 cargo test -v --features=netlib,serde-1 --no-default-features
5168 displayName: run test
5269
70+ - job : LinuxStaticNetlib
71+ pool :
72+ vmImage : ' ubuntu-16.04'
73+ steps :
74+ - script : |
75+ curl -sSf https://sh.rustup.rs | sh -s -- -y
76+ echo "##vso[task.setvariable variable=PATH;]$PATH:$HOME/.cargo/bin"
77+ displayName: install rustup
78+ - script : |
79+ sudo apt-get update
80+ sudo apt-get install -y cmake gfortran
81+ displayName: apt install
82+ - script : |
83+ cargo test -v --features=netlib-static --no-default-features
84+ cargo test -v --features=netlib-static,serde-1 --no-default-features
85+ displayName: run test
86+
5387 - job : LinuxIntelMKL
5488 pool :
5589 vmImage : ' ubuntu-16.04'
You can’t perform that action at this time.
0 commit comments