Azure: Set the timeout for jobs to the maximum

As per current Azure Pipelines documentation we qualify for 3600 minutes
per job, if specified, as the timeout. The default unspecified timeout
is 60 minutes. Rework things to specify 0 as the timeout (and so maximum
allowed) so that we don't have failures due to running slightly past 60
minutes total.

Link: https://learn.microsoft.com/en-us/azure/devops/pipelines/process/phases?view=azure-devops&tabs=yaml#timeouts
Signed-off-by: Tom Rini <trini@konsulko.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
Tom Rini 2023-08-20 13:31:26 -04:00
parent dcde1f95bf
commit 04f7e95385

View file

@ -468,6 +468,7 @@ stages:
- stage: world_build - stage: world_build
jobs: jobs:
- job: build_the_world - job: build_the_world
timeoutInMinutes: 0 # Use the maximum allowed
displayName: 'Build the World' displayName: 'Build the World'
pool: pool:
vmImage: $(ubuntu_vm) vmImage: $(ubuntu_vm)