mirror of
https://github.com/tokio-rs/tokio.git
synced 2025-09-25 12:00:35 +00:00
43 lines
1.1 KiB
YAML
43 lines
1.1 KiB
YAML
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: stable
|
|
rust_version: ${{ parameters.rust }}
|
|
|
|
# - 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'))
|
|
|
|
- template: azure-patch-crates.yml
|
|
|
|
- ${{ each crate in parameters.crates }}:
|
|
- script: cargo test --lib && cargo test --tests && cargo test --examples
|
|
env:
|
|
LOOM_MAX_DURATION: 10
|
|
CI: 'True'
|
|
displayName: cargo test -p ${{ crate }} (PATCHED)
|
|
workingDirectory: $(Build.SourcesDirectory)/${{ crate }}
|