521edee2e5
Currently just run it through its paces but don't actually push to official locations. Instead let's just push to a separate fork (mine) as well as open issues in a separate fork (mine). Make sure that people aren't pinged for these issues as well! This should hopefully ensure that everything is working on Azure and give us a chance to work through any issues that come up.
34 lines
743 B
YAML
34 lines
743 B
YAML
#
|
|
# Azure Pipelines pull request build for Rust
|
|
#
|
|
|
|
trigger: none
|
|
pr:
|
|
- master
|
|
|
|
jobs:
|
|
- job: Linux
|
|
timeoutInMinutes: 600
|
|
pool:
|
|
vmImage: ubuntu-16.04
|
|
steps:
|
|
- template: steps/run.yml
|
|
strategy:
|
|
matrix:
|
|
x86_64-gnu-llvm-6.0:
|
|
IMAGE: x86_64-gnu-llvm-6.0
|
|
mingw-check:
|
|
IMAGE: mingw-check
|
|
|
|
# TODO: enable this job if the commit message matches this regex, need tools
|
|
# figure out how to get the current commit message on azure and stick it in a
|
|
# condition somewhere
|
|
# if: commit_message =~ /(?i:^update.*\b(rls|rustfmt|clippy|miri|cargo)\b)/
|
|
# - job: Linux-x86_64-gnu-tools
|
|
# pool:
|
|
# vmImage: ubuntu-16.04
|
|
# steps:
|
|
# - template: steps/run.yml
|
|
# variables:
|
|
# IMAGE: x86_64-gnu-tools
|