mirror of
https://github.com/tokio-rs/tokio.git
synced 2026-08-23 00:00:10 +02:00
This function is used by the Tokio macros introduced by #1058 but was omitted from the PR.
24 lines
563 B
YAML
24 lines
563 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 }}
|
|
|
|
- template: azure-patch-crates.yml
|
|
|
|
- script: cargo test
|
|
displayName: cargo +nightly test -p async-await
|
|
workingDirectory: $(Build.SourcesDirectory)/async-await
|
|
|
|
- script: cargo check --all
|
|
displayName: cargo +nightly check --all
|
|
|
|
# Check benches
|
|
- script: cargo check --benches --all
|
|
displayName: Check benchmarks
|