From fa94755986f44362eddff7d724a00ab92dc9b9ec Mon Sep 17 00:00:00 2001 From: Jakob Botsch Nielsen Date: Tue, 10 May 2022 14:40:35 +0200 Subject: [PATCH] Increase helix job timeout for win-arm64 to 300 minutes --- eng/pipelines/common/templates/runtimes/run-test-job.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/eng/pipelines/common/templates/runtimes/run-test-job.yml b/eng/pipelines/common/templates/runtimes/run-test-job.yml index 649a751b9e6661..c332208ce8c373 100644 --- a/eng/pipelines/common/templates/runtimes/run-test-job.yml +++ b/eng/pipelines/common/templates/runtimes/run-test-job.yml @@ -136,7 +136,7 @@ jobs: - name: testTreeFilterArg value: '' - + # Only build GCSimulator tests when the gc-simulator group is specified. - ${{ if eq(parameters.testGroup, 'gc-simulator') }}: - ${{ if eq(parameters.osGroup, 'windows') }}: @@ -223,7 +223,10 @@ jobs: # TODO: update these numbers as they were determined long ago ${{ if eq(parameters.testGroup, 'innerloop') }}: - timeoutInMinutes: 200 + ${{ if and(eq(parameters.osGroup, 'windows'), eq(parameters.archType, 'arm64')) }}: + timeoutInMinutes: 300 + ${{ else }}: + timeoutInMinutes: 200 ${{ if in(parameters.testGroup, 'outerloop', 'jit-experimental', 'pgo', 'jit-cfg') }}: timeoutInMinutes: 270 ${{ if in(parameters.testGroup, 'gc-longrunning', 'gc-simulator') }}: