mirror of
https://github.com/tokio-rs/bytes.git
synced 2026-08-11 00:00:23 +02:00
To make the library work as `no_std` we add an `std` feature which is on by default. When it is off, we compile as `no_std` and make parts of the API that require `std::io` conditional on the `std` feature.
47 lines
1.2 KiB
YAML
47 lines
1.2 KiB
YAML
parameters:
|
|
cmd: test
|
|
rust_version: stable
|
|
features: []
|
|
|
|
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: ${{parameters.rust_version}}
|
|
|
|
# Run with default crate features
|
|
- script: cargo ${{ parameters.cmd }}
|
|
displayName: cargo ${{ parameters.cmd }}
|
|
|
|
# Run with each specified feature
|
|
- ${{ each feature in parameters.features.value }}:
|
|
- script: cargo ${{ parameters.cmd }} --features ${{ feature }}
|
|
displayName: cargo ${{ parameters.cmd }} --tests --features ${{ feature }}
|
|
|
|
- ${{ if eq(parameters.cmd, 'test') }}:
|
|
- script: cargo doc --no-deps
|
|
displayName: cargo doc --no-deps
|
|
|
|
- ${{ if parameters.benches }}:
|
|
- script: cargo check --benches
|
|
displayName: Check benchmarks
|
|
|
|
# Run with no default defaults
|
|
- script: cargo ${{ parameters.cmd }}
|
|
displayName: cargo ${{ parameters.cmd }} --no-default-features
|