From 595fe08f685adf633aaaa0713f5ffa553b7b18ee Mon Sep 17 00:00:00 2001 From: Drew Scoggins Date: Tue, 18 Aug 2020 08:58:47 -0700 Subject: [PATCH] Increase timeout for yaml as well (#40987) --- eng/pipelines/coreclr/templates/run-performance-job.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eng/pipelines/coreclr/templates/run-performance-job.yml b/eng/pipelines/coreclr/templates/run-performance-job.yml index e19f24f..df27c7e 100644 --- a/eng/pipelines/coreclr/templates/run-performance-job.yml +++ b/eng/pipelines/coreclr/templates/run-performance-job.yml @@ -13,7 +13,7 @@ parameters: frameworks: ['netcoreapp3.0'] # optional -- list of frameworks to run against continueOnError: 'false' # optional -- determines whether to continue the build if the step errors dependsOn: '' # optional -- dependencies of the job - timeoutInMinutes: 320 # optional -- timeout for the job + timeoutInMinutes: 1000 # optional -- timeout for the job enableTelemetry: false # optional -- enable for telemetry liveLibrariesBuildConfig: '' # optional -- live-live libraries configuration to use for the run runtimeType: 'coreclr' # optional -- Sets the runtime as coreclr or mono -- 2.7.4