summaryrefslogtreecommitdiffstats
path: root/ci/azure-test-stable.yml
blob: 93e9ee1383add3c6d57109934a93e40a28b84b23 (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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
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: stable
      rust_version: ${{ parameters.rust }}

  - script: cargo install cargo-hack
    displayName: Install cargo-hack
    # FIXME(taiki-e): many features of current cargo-hack are not available on windows: https://github.com/taiki-e/cargo-hack/issues/3
    condition: not(eq(variables['Agent.OS'], 'Windows_NT'))

  - template: azure-is-release.yml

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

    # Run with all crate features
    - script: cargo test --all-features
      env:
        LOOM_MAX_PREEMPTIONS: 2
        CI: 'True'
      displayName: ${{ crate }} - cargo test --all-features
      workingDirectory: $(Build.SourcesDirectory)/${{ crate }}

    # Check each specified feature works properly
    # * --each-feature - run for each feature which includes --no-default-features and default features of package
    # * --no-dev-deps - build without dev-dependencies to avoid https://github.com/rust-lang/cargo/issues/4866
    - script: cargo hack check --each-feature --no-dev-deps
      env:
        LOOM_MAX_PREEMPTIONS: 2
        CI: 'True'
      displayName: ${{ crate }} - cargo hack check --each-feature
      workingDirectory: $(Build.SourcesDirectory)/${{ crate }}
      # FIXME(taiki-e): many features of current cargo-hack are not available on windows: https://github.com/taiki-e/cargo-hack/issues/3
      condition: not(eq(variables['Agent.OS'], 'Windows_NT'))

  - template: azure-patch-crates.yml

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

    # Run with all crate features
    - script: cargo test --all-features
      env:
        LOOM_MAX_PREEMPTIONS: 2
        CI: 'True'
      displayName: ${{ crate }} - cargo test --all-features
      workingDirectory: $(Build.SourcesDirectory)/${{ crate }}

    # Check each specified feature works properly
    # * --each-feature - run for each feature which includes --no-default-features and default features of package
    # * --no-dev-deps - build without dev-dependencies to avoid https://github.com/rust-lang/cargo/issues/4866
    - script: cargo hack check --each-feature --no-dev-deps
      env:
        LOOM_MAX_PREEMPTIONS: 2
        CI: 'True'
      displayName: ${{ crate }} - cargo hack check --each-feature
      workingDirectory: $(Build.SourcesDirectory)/${{ crate }}
      # FIXME(taiki-e): many features of current cargo-hack are not available on windows: https://github.com/taiki-e/cargo-hack/issues/3
      condition: not(eq(variables['Agent.OS'], 'Windows_NT'))