summaryrefslogtreecommitdiffstats
path: root/ci/azure-test-stable.yml
blob: f53ca0eb548aaae07666153f630ada8eb4d408f5 (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
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

  - template: azure-is-release.yml

  - ${{ each crate in parameters.crates }}:
    - script: cargo test
      env:
        LOOM_MAX_DURATION: 10
        CI: 'True'
      displayName: cargo test -p ${{ crate }}
      workingDirectory: $(Build.SourcesDirectory)/${{ crate }}
      condition: and(succeeded(), ne(variables['isRelease'], 'true'))

  - template: azure-patch-crates.yml

  - ${{ each crate in parameters.crates }}:
    - script: cargo test
      env:
        LOOM_MAX_DURATION: 10
        CI: 'True'
      displayName: cargo test -p ${{ crate }} (PATCHED)
      workingDirectory: $(Build.SourcesDirectory)/${{ crate }}