2019-03-01 09:12:21 -08:00
|
|
|
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:
|
2019-06-24 12:34:30 -07:00
|
|
|
# rust_version: stable
|
|
|
|
|
rust_version: ${{ parameters.rust }}
|
2019-03-01 09:12:21 -08:00
|
|
|
|
2019-06-24 12:34:30 -07:00
|
|
|
# - template: azure-is-release.yml
|
|
|
|
|
#
|
|
|
|
|
# - ${{ each crate in parameters.crates }}:
|
|
|
|
|
# - script: cargo test
|
|
|
|
|
# env:
|
|
|
|
|
# LOOM_MAX_DURATION: 10
|
|
|
|
|
# CI: 'True'
|
|
|
|
|
# displayName: cargo test -p ${{ crate }}
|
|
|
|
|
# workingDirectory: $(Build.SourcesDirectory)/${{ crate }}
|
|
|
|
|
# condition: and(succeeded(), ne(variables['isRelease'], 'true'))
|
2019-03-01 09:12:21 -08:00
|
|
|
|
2019-03-21 14:30:18 -07:00
|
|
|
- template: azure-patch-crates.yml
|
2019-03-19 14:58:59 -07:00
|
|
|
|
|
|
|
|
- ${{ each crate in parameters.crates }}:
|
2019-07-03 08:49:05 -07:00
|
|
|
# Run with default crate features
|
|
|
|
|
- script: cargo test --tests
|
|
|
|
|
env:
|
|
|
|
|
LOOM_MAX_DURATION: 10
|
|
|
|
|
CI: 'True'
|
2019-07-10 11:21:06 -07:00
|
|
|
displayName: ${{ crate.key }} - cargo test --tests
|
2019-07-03 08:49:05 -07:00
|
|
|
workingDirectory: $(Build.SourcesDirectory)/${{ crate.key }}
|
|
|
|
|
- script: cargo test --examples
|
2019-07-10 11:21:06 -07:00
|
|
|
displayName: ${{ crate.key }} - cargo test --examples
|
2019-07-03 08:49:05 -07:00
|
|
|
workingDirectory: $(Build.SourcesDirectory)/${{ crate.key }}
|
|
|
|
|
|
|
|
|
|
# Run with each specified feature
|
2019-06-30 08:48:53 -07:00
|
|
|
- ${{ each feature in crate.value }}:
|
|
|
|
|
- script: cargo test --tests --no-default-features --features ${{ feature }}
|
|
|
|
|
env:
|
|
|
|
|
LOOM_MAX_DURATION: 10
|
|
|
|
|
CI: 'True'
|
2019-07-10 11:21:06 -07:00
|
|
|
displayName: ${{ crate.key }} - cargo test --tests --features ${{ feature }}
|
2019-07-03 08:49:05 -07:00
|
|
|
workingDirectory: $(Build.SourcesDirectory)/${{ crate.key }}
|
2019-06-30 08:48:53 -07:00
|
|
|
|
|
|
|
|
- script: cargo test --examples --no-default-features --features ${{ feature }}
|
2019-07-10 11:21:06 -07:00
|
|
|
displayName: ${{ crate.key }} - cargo test --examples --features ${{ feature }}
|
2019-07-03 08:49:05 -07:00
|
|
|
workingDirectory: $(Build.SourcesDirectory)/${{ crate.key }}
|