ci: lower number of remembered jobs to 5

Signed-off-by: Jakub Sokołowski <jakub@status.im>
This commit is contained in:
Jakub Sokołowski 2021-03-04 18:08:34 +01:00 committed by Jakub
parent d21cd6aba1
commit aab93a6abb
6 changed files with 6 additions and 6 deletions

View File

@ -20,7 +20,7 @@ pipeline {
checkoutToSubdirectory('src/github.com/status-im/status-go') checkoutToSubdirectory('src/github.com/status-im/status-go')
/* manage how many builds we keep */ /* manage how many builds we keep */
buildDiscarder(logRotator( buildDiscarder(logRotator(
numToKeepStr: '30', numToKeepStr: '5',
daysToKeepStr: '30', daysToKeepStr: '30',
)) ))
} }

View File

@ -21,7 +21,7 @@ pipeline {
checkoutToSubdirectory('src/github.com/status-im/status-go') checkoutToSubdirectory('src/github.com/status-im/status-go')
/* manage how many builds we keep */ /* manage how many builds we keep */
buildDiscarder(logRotator( buildDiscarder(logRotator(
numToKeepStr: '10', numToKeepStr: '5',
daysToKeepStr: '30', daysToKeepStr: '30',
)) ))
} }

View File

@ -21,7 +21,7 @@ pipeline {
checkoutToSubdirectory('src/github.com/status-im/status-go') checkoutToSubdirectory('src/github.com/status-im/status-go')
/* manage how many builds we keep */ /* manage how many builds we keep */
buildDiscarder(logRotator( buildDiscarder(logRotator(
numToKeepStr: '10', numToKeepStr: '5',
daysToKeepStr: '30', daysToKeepStr: '30',
)) ))
} }

View File

@ -21,7 +21,7 @@ pipeline {
checkoutToSubdirectory('src/github.com/status-im/status-go') checkoutToSubdirectory('src/github.com/status-im/status-go')
/* manage how many builds we keep */ /* manage how many builds we keep */
buildDiscarder(logRotator( buildDiscarder(logRotator(
numToKeepStr: '10', numToKeepStr: '5',
daysToKeepStr: '30', daysToKeepStr: '30',
)) ))
} }

View File

@ -21,7 +21,7 @@ pipeline {
checkoutToSubdirectory('src/github.com/status-im/status-go') checkoutToSubdirectory('src/github.com/status-im/status-go')
/* manage how many builds we keep */ /* manage how many builds we keep */
buildDiscarder(logRotator( buildDiscarder(logRotator(
numToKeepStr: '10', numToKeepStr: '5',
daysToKeepStr: '30', daysToKeepStr: '30',
)) ))
} }

View File

@ -16,7 +16,7 @@ pipeline {
checkoutToSubdirectory('src/github.com/status-im/status-go') checkoutToSubdirectory('src/github.com/status-im/status-go')
/* manage how many builds we keep */ /* manage how many builds we keep */
buildDiscarder(logRotator( buildDiscarder(logRotator(
numToKeepStr: '10', numToKeepStr: '5',
daysToKeepStr: '30', daysToKeepStr: '30',
)) ))
} }