jenkins: updated build discarder due to the additional images

The nightly build holds now 2x mmc and 1x ramdisk image for each
hw type. Thus the build discarder was updated.

Signed-off-by: Marc Mattmueller <marc.mattmueller@netmodule.com>
This commit is contained in:
Marc Mattmueller 2021-12-06 15:55:30 +01:00
parent e05c9765f0
commit 413c6f554c
3 changed files with 5 additions and 5 deletions

View File

@ -27,9 +27,9 @@ pipeline {
options { options {
timeout(time: 5, unit: 'HOURS') timeout(time: 5, unit: 'HOURS')
buildDiscarder( buildDiscarder(
logRotator(numToKeepStr: '50', logRotator(numToKeepStr: '40',
daysToKeepStr: '7', daysToKeepStr: '7',
artifactNumToKeepStr: '50', artifactNumToKeepStr: '40',
artifactDaysToKeepStr: '7' artifactDaysToKeepStr: '7'
) )
) )

View File

@ -28,9 +28,9 @@ pipeline {
options { options {
timeout(time: 5, unit: 'HOURS') timeout(time: 5, unit: 'HOURS')
buildDiscarder( buildDiscarder(
logRotator(numToKeepStr: '50', logRotator(numToKeepStr: '70',
daysToKeepStr: '7', daysToKeepStr: '7',
artifactNumToKeepStr: '50', artifactNumToKeepStr: '70',
artifactDaysToKeepStr: '7' artifactDaysToKeepStr: '7'
) )
) )

View File

@ -28,7 +28,7 @@ pipeline {
options { options {
timeout(time: 8, unit: 'HOURS') timeout(time: 8, unit: 'HOURS')
buildDiscarder( buildDiscarder(
logRotator(numToKeepStr: '5') logRotator(numToKeepStr: '6')
) )
} }