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

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

  - template: azure-patch-crates.yml

  - script: cargo check --all
    displayName: cargo +nightly check --all

  # Check benches
  - script: cargo check --benches --all
    displayName: Check benchmarks