lower number of artifacts to keep in CI to 10
Signed-off-by: Jakub Sokołowski <jakub@status.im>
This commit is contained in:
parent
69fd2dc99b
commit
6b3f9a31c2
|
@ -16,8 +16,8 @@ pipeline {
|
||||||
timeout(time: 15, unit: 'MINUTES')
|
timeout(time: 15, unit: 'MINUTES')
|
||||||
/* manage how many builds we keep */
|
/* manage how many builds we keep */
|
||||||
buildDiscarder(logRotator(
|
buildDiscarder(logRotator(
|
||||||
numToKeepStr: '20',
|
numToKeepStr: '10',
|
||||||
daysToKeepStr: '60',
|
daysToKeepStr: '30',
|
||||||
))
|
))
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -11,8 +11,8 @@ pipeline {
|
||||||
timeout(time: 15, unit: 'MINUTES')
|
timeout(time: 15, unit: 'MINUTES')
|
||||||
/* manage how many builds we keep */
|
/* manage how many builds we keep */
|
||||||
buildDiscarder(logRotator(
|
buildDiscarder(logRotator(
|
||||||
numToKeepStr: '20',
|
numToKeepStr: '10',
|
||||||
daysToKeepStr: '60',
|
daysToKeepStr: '30',
|
||||||
))
|
))
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -9,8 +9,8 @@ pipeline {
|
||||||
timeout(time: 25, unit: 'MINUTES')
|
timeout(time: 25, unit: 'MINUTES')
|
||||||
/* manage how many builds we keep */
|
/* manage how many builds we keep */
|
||||||
buildDiscarder(logRotator(
|
buildDiscarder(logRotator(
|
||||||
numToKeepStr: '20',
|
numToKeepStr: '10',
|
||||||
daysToKeepStr: '60',
|
daysToKeepStr: '30',
|
||||||
))
|
))
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue