2020-01-21 10:46:32 -08:00
|
|
|
jobs:
|
|
|
|
|
- job: ${{ parameters.name }}
|
|
|
|
|
displayName: ${{ parameters.displayName }}
|
|
|
|
|
strategy:
|
|
|
|
|
matrix:
|
|
|
|
|
Linux:
|
|
|
|
|
vmImage: ubuntu-16.04
|
|
|
|
|
MacOS:
|
2020-03-05 10:31:37 -08:00
|
|
|
vmImage: macos-latest
|
2020-01-21 10:46:32 -08:00
|
|
|
Windows:
|
|
|
|
|
vmImage: vs2017-win2016
|
|
|
|
|
pool:
|
|
|
|
|
vmImage: $(vmImage)
|
|
|
|
|
|
|
|
|
|
steps:
|
|
|
|
|
- template: azure-install-rust.yml
|
|
|
|
|
parameters:
|
|
|
|
|
rust_version: ${{ parameters.rust }}
|
|
|
|
|
|
|
|
|
|
- script: cargo install cargo-hack
|
|
|
|
|
displayName: Install cargo-hack
|
|
|
|
|
|
|
|
|
|
# Run with all crate features
|
|
|
|
|
- script: cargo hack test --each-feature
|
|
|
|
|
env:
|
|
|
|
|
CI: 'True'
|
|
|
|
|
displayName: cargo hack test --each-feature
|
|
|
|
|
workingDirectory: $(Build.SourcesDirectory)/tests-integration
|