Skip to content

Commit 0ca488f

Browse files
committed
Add Windows setting to azure
1 parent 129f49c commit 0ca488f

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

azure-pipelines.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,3 +58,16 @@ jobs:
5858
cargo test -v --features=intel-mkl --no-default-features
5959
cargo test -v --features=intel-mkl,serde-1 --no-default-features
6060
displayName: run test
61+
62+
- job: Windows
63+
pool:
64+
vmImage: 'windows-2019'
65+
steps:
66+
- script: |
67+
curl -sSf -o rustup-init.exe https://win.rustup.rs
68+
rustup-init.exe -y 2>&1
69+
set PATH=%PATH%;%USERPROFILE%\.cargo\bin
70+
echo '##vso[task.setvariable variable=PATH;]%PATH%;%USERPROFILE%\.cargo\bin'
71+
displayName: install rustup on Windows
72+
- script: cargo test -v --features=intel-mkl --no-default-features 2>&1
73+
displayName: run test

0 commit comments

Comments
 (0)