Skip to content

Commit

Permalink
Jenkinsfile: longer history, less artifacts
Browse files Browse the repository at this point in the history
Keep more builds to get better statistics.
But throw away artifacts after 99 days (~a quarter year). 
This should clean outdated PRs a bit.

eclipse-platform/eclipse.platform.releng.aggregator#2653
  • Loading branch information
jukzi committed Dec 16, 2024
1 parent ddf0a0a commit 5788b6e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Jenkinsfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
pipeline {
options {
timeout(time: 40, unit: 'MINUTES')
buildDiscarder(logRotator(numToKeepStr:'15'))
buildDiscarder(logRotator(numToKeepStr: '100', artifactNumToKeepStr: '15', artifactDaysToKeep: '99'))
disableConcurrentBuilds(abortPrevious: true)
timestamps()
}
Expand Down

0 comments on commit 5788b6e

Please sign in to comment.