summaryrefslogtreecommitdiffstats
path: root/ci/azure-check-features.yml
blob: 989213005231abdf88dbcb54cb678dc14fb1e2c6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
jobs:
- job: ${{ parameters.name }}
  displayName: Check features
  strategy:
    matrix:
      Linux:
        vmImage: ubuntu-16.04
      MacOS:
        vmImage: macos-latest
      Windows:
        vmImage: vs2017-win2016
  pool:
    vmImage: $(vmImage)

  steps:
  - template: azure-install-rust.yml
    parameters:
      rust_version: ${{ parameters.rust }}

  - template: azure-patch-crates.yml

  - script: cargo install cargo-hack
    displayName: Install cargo-hack

  # Check each feature works properly
  # * --each-feature
  #   run for each feature which includes --no-default-features and default features of package
  # * -Z avoid-dev-deps
  #   build without dev-dependencies to avoid https://github.com/rust-lang/cargo/issues/4866
  #   tracking-issue: https://github.com/rust-lang/cargo/issues/5133
  - script: cargo hack check --all --each-feature -Z avoid-dev-deps
    displayName: cargo hack check --all --each-feature

  # Try with unstable feature flags
  - script: cargo hack check --all --each-feature -Z avoid-dev-deps
    displayName: cargo hack check --all --each-feature
    env:
      RUSTFLAGS: '--cfg tokio_unstable'