Increase timeouts for PGO tests (#54030)
authorAndy Ayers <andya@microsoft.com>
Fri, 11 Jun 2021 16:15:43 +0000 (09:15 -0700)
committerGitHub <noreply@github.com>
Fri, 11 Jun 2021 16:15:43 +0000 (09:15 -0700)
eng/pipelines/common/templates/runtimes/run-test-job.yml

index 2257e71..bdb1429 100644 (file)
@@ -176,6 +176,9 @@ jobs:
         value: 180
       - name: timeoutPerTestInMinutes
         value: 30
+    - ${{ if in(parameters.testGroup, 'pgo') }}:
+      - name: timeoutPerTestCollectionInMinutes
+        value: 120
 
     - ${{ if eq(parameters.compositeBuildMode, true) }}:
       - name: crossgenArg
@@ -189,7 +192,7 @@ jobs:
     # TODO: update these numbers as they were determined long ago
     ${{ if eq(parameters.testGroup, 'innerloop') }}:
       timeoutInMinutes: 200
-    ${{ if in(parameters.testGroup, 'outerloop', 'jit-experimental') }}:
+    ${{ if in(parameters.testGroup, 'outerloop', 'jit-experimental', 'pgo') }}:
       timeoutInMinutes: 270
     ${{ if in(parameters.testGroup, 'gc-longrunning', 'gc-simulator') }}:
       timeoutInMinutes: 480