rust/.azure-pipelines/pr.yml

27 lines
572 B
YAML
Raw Normal View History

2019-05-06 13:15:52 -05:00
#
# Azure Pipelines pull request build for Rust
#
2019-05-06 13:15:52 -05:00
trigger: none
pr:
- master # FIXME: really just want any branch, but want an explicit "pr" property set so it's clear
variables:
- group: caching-pr
jobs:
- job: Linux
timeoutInMinutes: 180
2019-05-06 13:15:52 -05:00
pool:
vmImage: ubuntu-16.04
steps:
- template: steps/linux.yml
strategy:
matrix:
x86_64-gnu-llvm-6.0:
RUST_BACKTRACE: 1
2019-05-06 13:15:52 -05:00
x86_64-gnu-tools: {}
# if: branch = auto OR (type = pull_request AND commit_message =~ /(?i:^update.*\b(rls|rustfmt|clippy|miri|cargo)\b)/)
mingw-check: {}