]> git.lizzy.rs Git - rust.git/blob - .azure-pipelines/pr.yml
Auto merge of #62584 - eddyb:circular-math-is-hard, r=pnkfelix
[rust.git] / .azure-pipelines / pr.yml
1 #
2 # Azure Pipelines pull request build for Rust
3 #
4
5 trigger: none
6 pr:
7 - master
8
9 jobs:
10 - job: Linux
11   timeoutInMinutes: 600
12   pool:
13     vmImage: ubuntu-16.04
14   steps:
15     - template: steps/run.yml
16   strategy:
17     matrix:
18       x86_64-gnu-llvm-6.0:
19         IMAGE: x86_64-gnu-llvm-6.0
20       mingw-check:
21         IMAGE: mingw-check
22
23 # TODO: enable this job if the commit message matches this regex, need tools
24 # figure out how to get the current commit message on azure and stick it in a
25 # condition somewhere
26 #     if: commit_message =~ /(?i:^update.*\b(rls|rustfmt|clippy|miri|cargo)\b)/
27 # - job: Linux-x86_64-gnu-tools
28 #   pool:
29 #     vmImage: ubuntu-16.04
30 #   steps:
31 #     - template: steps/run.yml
32 #   variables:
33 #     IMAGE: x86_64-gnu-tools