We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 129f49c commit 0ca488fCopy full SHA for 0ca488f
azure-pipelines.yml
@@ -58,3 +58,16 @@ jobs:
58
cargo test -v --features=intel-mkl --no-default-features
59
cargo test -v --features=intel-mkl,serde-1 --no-default-features
60
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