summaryrefslogtreecommitdiffstats
path: root/ci/azure-test-integration.yml
blob: fc45429aa4996c529a88713283c9fb6f92fb16e7 (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
jobs:
- job: ${{ parameters.name }}
  displayName: ${{ parameters.displayName }}
  strategy:
    matrix:
      Linux:
        vmImage: ubuntu-16.04
      MacOS:
        vmImage: macOS-10.13
      Windows:
        vmImage: vs2017-win2016
  pool:
    vmImage: $(vmImage)

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

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

  # Run with all crate features
  - script: cargo hack test --each-feature
    env:
      CI: 'True'
    displayName: cargo hack test --each-feature
    workingDirectory: $(Build.SourcesDirectory)/tests-integration