Keep fewer builds in the Jenkins history

This commit is contained in:
Yoann Rodière 2022-02-07 18:16:07 +01:00
parent 814c1ad679
commit 416eeafaa2
1 changed files with 1 additions and 1 deletions

2
Jenkinsfile vendored
View File

@ -53,7 +53,7 @@ stage('Configure') {
}
properties([
buildDiscarder(
logRotator(daysToKeepStr: '90')
logRotator(daysToKeepStr: '30', numToKeepStr: '10')
),
// If two builds are about the same branch or pull request,
// the older one will be aborted when the newer one starts.