9926868195
This allows the use of sccache to compile LLVM, and should fix toolstate not working.
36 lines
584 B
YAML
36 lines
584 B
YAML
#
|
|
# Azure Pipelines pull request build for Rust
|
|
#
|
|
|
|
trigger: none
|
|
pr:
|
|
- master
|
|
|
|
variables:
|
|
- group: public-credentials
|
|
|
|
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
|
|
|
|
- job: LinuxTools
|
|
timeoutInMinutes: 600
|
|
pool:
|
|
vmImage: ubuntu-16.04
|
|
steps:
|
|
- template: steps/run.yml
|
|
parameters:
|
|
only_on_updated_submodules: 'yes'
|
|
variables:
|
|
IMAGE: x86_64-gnu-tools
|