Files
tokio/ci/azure-test-stable.yml
T

65 lines
1.7 KiB
YAML
Raw Normal View History

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-latest
2019-03-01 09:12:21 -08:00
Windows:
vmImage: vs2017-win2016
pool:
vmImage: $(vmImage)
steps:
- template: azure-install-rust.yml
parameters:
rust_version: ${{ parameters.rust }}
2019-03-01 09:12:21 -08:00
2019-08-07 20:02:13 -07:00
- template: azure-is-release.yml
2020-05-03 12:35:47 -07:00
# Run `tokio` with only `full`
- script: cargo test --features full
env:
RUST_BACKTRACE: 1
CI: 'True'
displayName: tokio - cargo test --features full
workingDirectory: $(Build.SourcesDirectory)/tokio
# Run `tokio` with "unstable" cfg flag
- script: cargo test --all-features
env:
RUSTFLAGS: '--cfg tokio_unstable'
RUST_BACKTRACE: 1
CI: 'True'
displayName: tokio - cargo test --features full
workingDirectory: $(Build.SourcesDirectory)/tokio
- ${{ each crate in parameters.crates }}:
# Run with all crate features
- script: cargo test --all-features
env:
RUST_BACKTRACE: 1
CI: 'True'
displayName: ${{ crate }} - cargo test --all-features
workingDirectory: $(Build.SourcesDirectory)/${{ crate }}
# Check benches
- script: cargo check --all-features --benches
displayName: ${{ crate }} - cargo check --benches
workingDirectory: $(Build.SourcesDirectory)/${{ crate }}
2019-08-07 20:02:13 -07:00
- template: azure-patch-crates.yml
- ${{ each crate in parameters.crates }}:
# Run with all crate features
- script: cargo test --all-features
env:
RUST_BACKTRACE: 1
CI: 'True'
displayName: ${{ crate }} - cargo test --all-features
workingDirectory: $(Build.SourcesDirectory)/${{ crate }}