2018-10-08 16:45:49 -05:00
|
|
|
jobs:
|
2018-12-19 12:27:49 -06:00
|
|
|
|
|
|
|
- job: check_formatting
|
2019-01-09 01:57:34 -06:00
|
|
|
displayName: Check formatting
|
2018-12-19 12:27:49 -06:00
|
|
|
pool:
|
|
|
|
vmImage: ubuntu-16.04
|
|
|
|
steps:
|
|
|
|
- script: |
|
|
|
|
curl https://sh.rustup.rs -sSf | sh -s -- -y
|
|
|
|
$HOME/.cargo/bin/rustup component add rustfmt
|
2019-01-09 01:57:34 -06:00
|
|
|
displayName: Install stable Rust
|
2018-12-19 12:27:49 -06:00
|
|
|
- script: |
|
|
|
|
$HOME/.cargo/bin/cargo fmt -- --check
|
2019-01-09 01:57:34 -06:00
|
|
|
displayName: Run rustfmt
|
2018-10-08 16:45:49 -05:00
|
|
|
|
|
|
|
- template: _build/azure-pipelines-template.yml
|
|
|
|
parameters:
|
|
|
|
name: Linux
|
|
|
|
vmImage: ubuntu-16.04
|
|
|
|
|
2018-12-19 12:27:49 -06:00
|
|
|
- template: _build/azure-pipelines-template.yml
|
|
|
|
parameters:
|
|
|
|
name: macOS
|
|
|
|
vmImage: macOS-10.13
|
|
|
|
|
2018-10-08 16:45:49 -05:00
|
|
|
- template: _build/azure-pipelines-template.yml
|
|
|
|
parameters:
|
|
|
|
name: Windows
|
|
|
|
vmImage: vs2017-win2016
|