summaryrefslogtreecommitdiffstats
path: root/ci/azure-test-build.yml
blob: 944b9e24f6208ddb8a0edb96bac4ff92788cbaae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
jobs:
- job: ${{ parameters.name }}
  displayName: ${{ parameters.displayName }}
  pool:
    vmImage: 'Ubuntu 16.04'

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

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

  - script: cargo hack test --each-feature
    displayName: cargo hack test --each-feature
    workingDirectory: $(Build.SourcesDirectory)/tests-build