Skip to content

Commit fb3daae

Browse files
committed
[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.
1 parent b2e2717 commit fb3daae

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

JenkinsJobs/Releng/promoteBuild.jenkinsfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ pipeline {
33
skipDefaultCheckout()
44
timestamps()
55
timeout(time: 120, unit: 'MINUTES')
6-
buildDiscarder(logRotator(numToKeepStr:'5'))
6+
buildDiscarder(logRotator(numToKeepStr:'10'))
77
}
88
agent {
99
label 'basic'

JenkinsJobs/Releng/publishPromotedBuild.jenkinsfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ pipeline {
22
options {
33
skipDefaultCheckout()
44
timestamps()
5-
timeout(time: 15, unit: 'MINUTES')
6-
buildDiscarder(logRotator(numToKeepStr:'5'))
5+
timeout(time: 45, unit: 'MINUTES')
6+
buildDiscarder(logRotator(numToKeepStr:'10'))
77
}
88
agent {
99
label 'basic'

0 commit comments

Comments
 (0)