juniper/azure-pipelines.yml

30 lines
679 B
YAML
Raw Normal View History

2018-10-08 16:45:49 -05:00
jobs:
- job: check_formatting
displayName: Check formatting
pool:
vmImage: ubuntu-16.04
steps:
- script: |
curl https://sh.rustup.rs -sSf | sh -s -- -y
$HOME/.cargo/bin/rustup component add rustfmt
displayName: Install stable Rust
- script: |
$HOME/.cargo/bin/cargo fmt -- --check
displayName: Run rustfmt
2018-10-08 16:45:49 -05:00
- template: _build/azure-pipelines-template.yml
parameters:
name: Linux
vmImage: ubuntu-16.04
- 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