Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion .cci.jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,14 @@

properties([
// abort previous runs when a PR is updated to save resources
disableConcurrentBuilds(abortPrevious: true)
disableConcurrentBuilds(abortPrevious: true),

// only keep the last 10 builds
// builds older than 30 days are also rotated out
buildDiscarder(logRotator(
numToKeepStr: '10',
daysToKeepStr: '30'
))
])

// Grab a decent amount of memory/cpu
Expand Down