ci: keep only last 10 builds to reduce size

Signed-off-by: Jakub Sokołowski <jakub@status.im>
This commit is contained in:
Jakub Sokołowski 2020-09-07 20:37:41 +02:00 committed by Jakub
parent 3b748a2e46
commit 7ba89867ac
5 changed files with 5 additions and 5 deletions

View File

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

View File

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

View File

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

View File

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

View File

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