summaryrefslogtreecommitdiffstats
path: root/ci/azure-test-stable.yml
blob: 55aa84e092d687307008f80fb8344f0d61b7d382 (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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
jobs:
- job: ${{ parameters.name }}
  displayName: ${{ parameters.displayName }}
  strategy:
    matrix:
      Linux:
        vmImage: ubuntu-16.04

      ${{ if parameters.cross }}:
        MacOS:
          vmImage: macos-latest
        Windows:
          vmImage: vs2017-win2016
  pool:
    vmImage: $(vmImage)

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

  - template: azure-is-release.yml

  # Run `tokio` with only `full`
  - script: cargo test --features full
    env:
      RUST_BACKTRACE: 1
      CI: 'True'
    displayName: tokio - cargo test --features full
    workingDirectory: $(Build.SourcesDirectory)/tokio

  # Run `tokio` with "unstable" cfg flag
  - script: cargo test --all-features
    env:
      RUSTFLAGS: '--cfg tokio_unstable'
      RUST_BACKTRACE: 1
      CI: 'True'
    displayName: tokio - cargo test --features full
    workingDirectory: $(Build.SourcesDirectory)/tokio

  - ${{ each crate in parameters.crates }}:
    # Run with all crate features
    - script: cargo test --all-features
      env:
        RUST_BACKTRACE: 1
        CI: 'True'
      displayName: ${{ crate }} - cargo test --all-features
      workingDirectory: $(Build.SourcesDirectory)/${{ crate }}

    # Check benches
    - script: cargo check --all-features --benches
      displayName: ${{ crate }} - cargo check --benches
      workingDirectory: $(Build.SourcesDirectory)/${{ crate }}

  - template: azure-patch-crates.yml

  - ${{ each crate in parameters.crates }}:
    # Run with all crate features
    - script: cargo test --all-features
      env:
        RUST_BACKTRACE: 1
        CI: 'True'
      displayName: ${{ crate }} - cargo test --all-features
      workingDirectory: $(Build.SourcesDirectory)/${{ crate }}