mirror of
https://github.com/tokio-rs/tokio.git
synced 2026-08-25 00:00:18 +02:00
18 lines
449 B
YAML
18 lines
449 B
YAML
jobs:
|
|||
|
|
- job: ${{ parameters.name }}
|
||
|
|
displayName: ${{ parameters.displayName }}
|
||
|
|
pool:
|
||
|
|
vmImage: 'Ubuntu 16.04'
|
||
|
|
|
||
|
|
steps:
|
||
|
|
- template: azure-install-rust.yml
|
||
|
|
parameters:
|
||
|
|
rust_version: ${{ parameters.rust }}
|
||
|
|
|
||
|
|
- script: cargo install cargo-hack
|
||
|
|
displayName: Install cargo-hack
|
||
|
|
|
||
|
|
- script: cargo hack test --each-feature
|
||
|
|
displayName: cargo hack test --each-feature
|
||
|
|
workingDirectory: $(Build.SourcesDirectory)/tests-build
|