From a30bf4dfb35115ce1865655522f475340333335a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20de=20la=20Pe=C3=B1a?= Date: Mon, 28 Feb 2022 20:42:42 +0100 Subject: [PATCH] chore: increase build timeout to 90 minutes (#2139) (#2186) # Conflicts: # .ci/Jenkinsfile --- .ci/Jenkinsfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.ci/Jenkinsfile b/.ci/Jenkinsfile index f3f0dd9d28..5d01163d97 100644 --- a/.ci/Jenkinsfile +++ b/.ci/Jenkinsfile @@ -24,8 +24,8 @@ pipeline { RUN_ID = UUID.randomUUID().toString() } options { - timeout(time: 1, unit: 'HOURS') - buildDiscarder(logRotator(numToKeepStr: '20', artifactNumToKeepStr: '20', daysToKeepStr: '30')) + timeout(time: 90, unit: 'MINUTES') + buildDiscarder(logRotator(numToKeepStr: '200', artifactNumToKeepStr: '30', daysToKeepStr: '30')) timestamps() ansiColor('xterm') disableResume()