rust/.azure-pipelines/try.yml
Pietro Albini c50517ae85
ci: reduce all azure timeouts to 3 hours
As the infra team we decided to have an hard timeout of 3 hours on all
the jobs: while this sometimes causes spurious timeout errors it's a
great limit to prevent CI time to grow even more.
2019-05-10 09:56:46 +02:00

29 lines
556 B
YAML

#
# Azure Pipelines "try" branch build for Rust
#
pr: none
trigger:
- try
variables:
- group: caching
jobs:
- job: Linux
timeoutInMinutes: 180
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