From 35d6edf53a8e6a61fcad46497ba0f92bccbde8b8 Mon Sep 17 00:00:00 2001 From: Hannes Wellmann Date: Fri, 22 Aug 2025 00:30:36 +0200 Subject: [PATCH] [RelEng] Keep up to ten builds of the Promotion/Publication jobs This way at least one release cycle is available in the history, as these jobs run at least six times per release. --- JenkinsJobs/Releng/promoteBuild.jenkinsfile | 2 +- JenkinsJobs/Releng/publishPromotedBuild.jenkinsfile | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/JenkinsJobs/Releng/promoteBuild.jenkinsfile b/JenkinsJobs/Releng/promoteBuild.jenkinsfile index 745c1901134..6d51a2a76ff 100644 --- a/JenkinsJobs/Releng/promoteBuild.jenkinsfile +++ b/JenkinsJobs/Releng/promoteBuild.jenkinsfile @@ -3,7 +3,7 @@ pipeline { skipDefaultCheckout() timestamps() timeout(time: 120, unit: 'MINUTES') - buildDiscarder(logRotator(numToKeepStr:'5')) + buildDiscarder(logRotator(numToKeepStr:'10')) } agent { label 'basic' diff --git a/JenkinsJobs/Releng/publishPromotedBuild.jenkinsfile b/JenkinsJobs/Releng/publishPromotedBuild.jenkinsfile index 14bce64f042..883ac268dc7 100644 --- a/JenkinsJobs/Releng/publishPromotedBuild.jenkinsfile +++ b/JenkinsJobs/Releng/publishPromotedBuild.jenkinsfile @@ -2,8 +2,8 @@ pipeline { options { skipDefaultCheckout() timestamps() - timeout(time: 15, unit: 'MINUTES') - buildDiscarder(logRotator(numToKeepStr:'5')) + timeout(time: 45, unit: 'MINUTES') + buildDiscarder(logRotator(numToKeepStr:'10')) } agent { label 'basic'