2019-05-06 13:15:52 -05:00
|
|
|
#
|
|
|
|
# Azure Pipelines "try" branch build for Rust
|
|
|
|
#
|
|
|
|
|
|
|
|
pr: none
|
|
|
|
trigger:
|
|
|
|
- try
|
|
|
|
|
|
|
|
variables:
|
|
|
|
- group: caching
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
- job: Linux
|
2019-05-10 02:56:46 -05:00
|
|
|
timeoutInMinutes: 180
|
2019-05-06 13:15:52 -05:00
|
|
|
pool:
|
|
|
|
vmImage: ubuntu-16.04
|
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
dist-x86_64-linux:
|
|
|
|
DEPLOY: 1
|
|
|
|
|
|
|
|
# "alternate" deployments, these are "nightlies" but have LLVM assertions
|
|
|
|
# turned on, they're deployed to a different location primarily for
|
|
|
|
# additional testing.
|
|
|
|
dist-x86_64-linux-alt:
|
|
|
|
IMAGE: dist-x86_64-linux
|
|
|
|
DEPLOY_ALT: 1
|
|
|
|
steps:
|
|
|
|
- template: steps/linux.yml
|