lower number of artifacts to keep in CI to 10

Signed-off-by: Jakub Sokołowski <jakub@status.im>
This commit is contained in:
Jakub Sokołowski 2020-11-24 19:42:31 +01:00 committed by Jakub
parent 69fd2dc99b
commit 6b3f9a31c2
3 changed files with 6 additions and 6 deletions

View File

@ -16,8 +16,8 @@ pipeline {
timeout(time: 15, unit: 'MINUTES')
/* manage how many builds we keep */
buildDiscarder(logRotator(
numToKeepStr: '20',
daysToKeepStr: '60',
numToKeepStr: '10',
daysToKeepStr: '30',
))
}

View File

@ -11,8 +11,8 @@ pipeline {
timeout(time: 15, unit: 'MINUTES')
/* manage how many builds we keep */
buildDiscarder(logRotator(
numToKeepStr: '20',
daysToKeepStr: '60',
numToKeepStr: '10',
daysToKeepStr: '30',
))
}

View File

@ -9,8 +9,8 @@ pipeline {
timeout(time: 25, unit: 'MINUTES')
/* manage how many builds we keep */
buildDiscarder(logRotator(
numToKeepStr: '20',
daysToKeepStr: '60',
numToKeepStr: '10',
daysToKeepStr: '30',
))
}