rust/.azure-pipelines/try.yml

31 lines
597 B
YAML
Raw Normal View History

2019-05-06 13:15:52 -05:00
#
# Azure Pipelines "try" branch build for Rust
#
2019-05-06 13:15:52 -05:00
pr: none
trigger:
- try
variables:
2019-05-15 07:44:25 -05:00
- group: prod-credentials
2019-05-06 13:15:52 -05:00
jobs:
- job: Linux
timeoutInMinutes: 180
2019-05-06 13:15:52 -05:00
pool:
vmImage: ubuntu-16.04
strategy:
matrix:
dist-x86_64-linux:
IMAGE: dist-x86_64-linux
2019-05-06 13:15:52 -05:00
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