aboutsummaryrefslogtreecommitdiff
path: root/ci/azure-test-stable.yml
diff options
context:
space:
mode:
Diffstat (limited to 'ci/azure-test-stable.yml')
-rw-r--r--ci/azure-test-stable.yml50
1 files changed, 50 insertions, 0 deletions
diff --git a/ci/azure-test-stable.yml b/ci/azure-test-stable.yml
new file mode 100644
index 0000000..e543eee
--- /dev/null
+++ b/ci/azure-test-stable.yml
@@ -0,0 +1,50 @@
+parameters:
+ cmd: test
+ rust_version: stable
+ features: []
+
+jobs:
+- job: ${{ parameters.name }}
+ displayName: ${{ parameters.displayName }}
+ strategy:
+ matrix:
+ Linux:
+ vmImage: ubuntu-16.04
+
+ ${{ if parameters.cross }}:
+ MacOS:
+ vmImage: macOS-10.13
+ Windows:
+ vmImage: vs2017-win2016
+ pool:
+ vmImage: $(vmImage)
+
+ steps:
+ - template: azure-install-rust.yml
+ parameters:
+ rust_version: ${{parameters.rust_version}}
+
+ # Run with default crate features
+ - script: cargo ${{ parameters.cmd }}
+ displayName: cargo ${{ parameters.cmd }}
+
+ # Run with each specified feature
+ - ${{ each feature in parameters.features }}:
+ - script: cargo ${{ parameters.cmd }} --features ${{ feature }}
+ displayName: cargo ${{ parameters.cmd }} --features ${{ feature }}
+
+ - ${{ if eq(parameters.cmd, 'test') }}:
+ - script: cargo doc --no-deps
+ displayName: cargo doc --no-deps
+
+ - ${{ if parameters.benches }}:
+ - script: cargo check --benches
+ displayName: Check benchmarks
+
+ # Run with all features
+ - script: cargo ${{ parameters.cmd }} --all-features
+ displayName: cargo ${{ parameters.cmd }} --all-features
+
+ # Run with no default features
+ - script: cargo check --no-default-features
+ displayName: cargo check --no-default-features