Skip to content

Commit

Permalink
Merge pull request dotnet#44520 from sharwell/increase-timeouts
Browse files Browse the repository at this point in the history
Increase timeouts to account for slower build machines
  • Loading branch information
JoeRobich authored May 22, 2020
2 parents cb43d26 + b66588c commit 287a25a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion eng/build.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -423,7 +423,7 @@ function TestUsingOptimizedRunner() {
if ($testVsi) {
$args += " -timeout:110"
} else {
$args += " -timeout:75"
$args += " -timeout:90"
}
}

Expand Down

0 comments on commit 287a25a

Please sign in to comment.