chore(ci)_: adjust nightly tests build retention to 14 runs
Increased build and artifact retention, as more context is usually needed when analyzing flakiness thorugh nightly tests.
This commit is contained in:
parent
b6fe129ad6
commit
8914a79284
|
@ -45,9 +45,9 @@ pipeline {
|
||||||
disableConcurrentBuilds()
|
disableConcurrentBuilds()
|
||||||
/* manage how many builds we keep */
|
/* manage how many builds we keep */
|
||||||
buildDiscarder(logRotator(
|
buildDiscarder(logRotator(
|
||||||
numToKeepStr: '5',
|
numToKeepStr: isTestNightlyJob() ? '14' : '5',
|
||||||
daysToKeepStr: '30',
|
daysToKeepStr: '30',
|
||||||
artifactNumToKeepStr: '1',
|
artifactNumToKeepStr: isTestNightlyJob() ? '14' : '1',
|
||||||
))
|
))
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue