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:
Patryk Osmaczko 2024-08-20 09:03:10 +02:00 committed by osmaczko
parent b6fe129ad6
commit 8914a79284
1 changed files with 2 additions and 2 deletions

View File

@ -45,9 +45,9 @@ pipeline {
disableConcurrentBuilds()
/* manage how many builds we keep */
buildDiscarder(logRotator(
numToKeepStr: '5',
numToKeepStr: isTestNightlyJob() ? '14' : '5',
daysToKeepStr: '30',
artifactNumToKeepStr: '1',
artifactNumToKeepStr: isTestNightlyJob() ? '14' : '1',
))
}