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

The Tokio runtime provides a "shell" runtime when `rt-core` is not available. This shell runtime is enough to support `#[tokio::main`] and `#[tokio::test]. A previous change disabled these two attr macros when `rt-core` was not selected. This patch fixes this by re-enabling the `main` and `test` attr macros without `rt-core` and adds some integration tests to prevent future regressions.
29 lines
665 B
YAML
29 lines
665 B
YAML
jobs:
|
|
- job: ${{ parameters.name }}
|
|
displayName: ${{ parameters.displayName }}
|
|
strategy:
|
|
matrix:
|
|
Linux:
|
|
vmImage: ubuntu-16.04
|
|
MacOS:
|
|
vmImage: macOS-10.13
|
|
Windows:
|
|
vmImage: vs2017-win2016
|
|
pool:
|
|
vmImage: $(vmImage)
|
|
|
|
steps:
|
|
- template: azure-install-rust.yml
|
|
parameters:
|
|
rust_version: ${{ parameters.rust }}
|
|
|
|
- script: cargo install cargo-hack
|
|
displayName: Install cargo-hack
|
|
|
|
# Run with all crate features
|
|
- script: cargo hack test --each-feature
|
|
env:
|
|
CI: 'True'
|
|
displayName: cargo hack test --each-feature
|
|
workingDirectory: $(Build.SourcesDirectory)/tests-integration
|