From b66588c880735fc1bb9ad3a1249b13ac8a15fc95 Mon Sep 17 00:00:00 2001 From: Sam Harwell Date: Fri, 22 May 2020 08:28:56 -0700 Subject: [PATCH] Increase timeouts to account for slower build machines --- azure-pipelines.yml | 4 ++-- eng/build.ps1 | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 0b03b08679ae6..e11c5c60e2c4d 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -34,7 +34,7 @@ jobs: release_64: _configuration: Release _testKind: Test64 - timeoutInMinutes: 90 + timeoutInMinutes: 120 steps: - script: eng/cibuild.cmd -configuration $(_configuration) -prepareMachine -testDesktop -$(_testKind) -procdump @@ -62,7 +62,7 @@ jobs: pool: name: NetCorePublic-Pool queue: BuildPool.Windows.10.Amd64.ES.VS2017.Open - timeoutInMinutes: 105 + timeoutInMinutes: 120 steps: - script: eng/cibuild.cmd -configuration Debug -prepareMachine -testDesktop diff --git a/eng/build.ps1 b/eng/build.ps1 index eb70e432b7624..5a8b3b9ca351a 100644 --- a/eng/build.ps1 +++ b/eng/build.ps1 @@ -423,7 +423,7 @@ function TestUsingOptimizedRunner() { if ($testVsi) { $args += " -timeout:110" } else { - $args += " -timeout:75" + $args += " -timeout:90" } }