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 1+ jobs :
2+ - job : Linux
3+ pool :
4+ vmImage : ' ubuntu-16.04'
5+ strategy :
6+ matrix :
7+ openblas :
8+ feature : openblas
9+ netlib :
10+ feature : netlib
11+ intel-mkl :
12+ feature : intel-mkl
13+ steps :
14+ - script : |
15+ curl -sSf https://sh.rustup.rs | sh -s -- -y
16+ echo "##vso[task.setvariable variable=PATH;]$PATH:$HOME/.cargo/bin"
17+ displayName: install rustup
18+ - script : cargo test -v --features=$FEATURE --no-default-features
19+ displayName : run test
20+
21+ - job : macOS
22+ pool :
23+ vmImage : ' macOS-10.14'
24+ strategy :
25+ matrix :
26+ intel-mkl :
27+ feature : intel-mkl
28+ steps :
29+ - script : |
30+ curl -sSf https://sh.rustup.rs | sh -s -- -y
31+ echo "##vso[task.setvariable variable=PATH;]$PATH:$HOME/.cargo/bin"
32+ displayName: install rustup
33+ - script : cargo test -v --features=$FEATURE --no-default-features
34+ displayName : run test
You can’t perform that action at this time.
0 commit comments