summaryrefslogtreecommitdiffstats
path: root/third_party/rust/mio/ci/azure-test-stable.yml
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/rust/mio/ci/azure-test-stable.yml')
-rw-r--r--third_party/rust/mio/ci/azure-test-stable.yml45
1 files changed, 45 insertions, 0 deletions
diff --git a/third_party/rust/mio/ci/azure-test-stable.yml b/third_party/rust/mio/ci/azure-test-stable.yml
new file mode 100644
index 0000000000..b0b9be145f
--- /dev/null
+++ b/third_party/rust/mio/ci/azure-test-stable.yml
@@ -0,0 +1,45 @@
+parameters:
+ cmd: test
+ rust_version: stable
+
+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 }}
+
+ - script: |
+ cargo update
+ cargo update -p cfg-if --precise 0.1.9
+ cargo ${{ parameters.cmd }}
+ displayName: cargo ${{ parameters.cmd }}
+ env:
+ CI: 'True'
+
+ - script: cargo ${{ parameters.cmd }} --no-default-features
+ displayName: cargo ${{ parameters.cmd }} --no-default-features
+ env:
+ CI: 'True'
+
+ - ${{ 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