From 219f1b03846a31235dea14b2d0fcdf6adaf3371c Mon Sep 17 00:00:00 2001 From: Nathan Ricci Date: Tue, 2 Aug 2022 16:10:46 -0400 Subject: [PATCH 1/3] Increased timeout. --- eng/pipelines/common/templates/runtimes/run-test-job.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/eng/pipelines/common/templates/runtimes/run-test-job.yml b/eng/pipelines/common/templates/runtimes/run-test-job.yml index f7f310dfb97429..c895ce722cc3d8 100644 --- a/eng/pipelines/common/templates/runtimes/run-test-job.yml +++ b/eng/pipelines/common/templates/runtimes/run-test-job.yml @@ -237,6 +237,8 @@ jobs: timeoutInMinutes: 510 ${{ if eq(parameters.testGroup, 'jitstress-isas-x86') }}: timeoutInMinutes: 960 + ${{ if and( eq(parameters.runtimeFlavor, 'mono'), eq(parameters.runtimeVariant, 'llvmfullaot') }}: + timeoutInMinutes: 400 steps: From 46326df6a86741c4d9846a8a50ae97bf60618453 Mon Sep 17 00:00:00 2001 From: Nathan Ricci Date: Wed, 3 Aug 2022 10:51:20 -0400 Subject: [PATCH 2/3] Changed how we increase timeout. --- eng/pipelines/common/templates/runtimes/run-test-job.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/eng/pipelines/common/templates/runtimes/run-test-job.yml b/eng/pipelines/common/templates/runtimes/run-test-job.yml index c895ce722cc3d8..ca852758bc0f1f 100644 --- a/eng/pipelines/common/templates/runtimes/run-test-job.yml +++ b/eng/pipelines/common/templates/runtimes/run-test-job.yml @@ -223,7 +223,7 @@ jobs: # TODO: update these numbers as they were determined long ago ${{ if eq(parameters.testGroup, 'innerloop') }}: - ${{ if and(eq(parameters.osGroup, 'windows'), eq(parameters.archType, 'arm64')) }}: + ${{ if eq(parameters.archType, 'arm64')) }}: timeoutInMinutes: 300 ${{ else }}: timeoutInMinutes: 200 @@ -237,8 +237,6 @@ jobs: timeoutInMinutes: 510 ${{ if eq(parameters.testGroup, 'jitstress-isas-x86') }}: timeoutInMinutes: 960 - ${{ if and( eq(parameters.runtimeFlavor, 'mono'), eq(parameters.runtimeVariant, 'llvmfullaot') }}: - timeoutInMinutes: 400 steps: From a5bf80abd7ae283a086a8c6441fb17877e627292 Mon Sep 17 00:00:00 2001 From: Nathan Ricci Date: Wed, 3 Aug 2022 14:20:55 -0400 Subject: [PATCH 3/3] Removed extra parenthesis. --- eng/pipelines/common/templates/runtimes/run-test-job.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eng/pipelines/common/templates/runtimes/run-test-job.yml b/eng/pipelines/common/templates/runtimes/run-test-job.yml index ca852758bc0f1f..e6f663eb8ae7a3 100644 --- a/eng/pipelines/common/templates/runtimes/run-test-job.yml +++ b/eng/pipelines/common/templates/runtimes/run-test-job.yml @@ -223,7 +223,7 @@ jobs: # TODO: update these numbers as they were determined long ago ${{ if eq(parameters.testGroup, 'innerloop') }}: - ${{ if eq(parameters.archType, 'arm64')) }}: + ${{ if eq(parameters.archType, 'arm64') }}: timeoutInMinutes: 300 ${{ else }}: timeoutInMinutes: 200