mirror of
https://github.com/tokio-rs/tokio.git
synced 2025-09-28 12:10:37 +00:00

The `async-await-preview` feature is removed as 0.1 will no longer track Rust nightly. This also bumps: - tokio-timer (0.2.11).
20 lines
427 B
YAML
20 lines
427 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 check --all
|
|
displayName: cargo +nightly check --all
|
|
|
|
# Check benches
|
|
- script: cargo check --benches --all
|
|
displayName: Check benchmarks
|