Skip to content

Commit ba27c83

Browse files
committed
Setting for Azure Pipeline
1 parent 87bba67 commit ba27c83

File tree

1 file changed

+34
-0
lines changed

1 file changed

+34
-0
lines changed

azure-pipelines.yml

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
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

0 commit comments

Comments
 (0)