limit number of mobile builds saved by Jenkins
Signed-off-by: Jakub Sokołowski <jakub@status.im>
This commit is contained in:
parent
b87cfe21f0
commit
d292184aa8
|
@ -1,3 +1,10 @@
|
|||
properties([
|
||||
buildDiscarder(logRotator(
|
||||
numToKeepStr: '3',
|
||||
daysToKeepStr: '7',
|
||||
))
|
||||
])
|
||||
|
||||
env.LANG="en_US.UTF-8"
|
||||
env.LANGUAGE="en_US.UTF-8"
|
||||
env.LC_ALL="en_US.UTF-8"
|
||||
|
|
|
@ -1,5 +1,11 @@
|
|||
// We need nightly builds for users who want to test apps, diawi removes old builds and limits downloads, hence the need for Artifactory.
|
||||
// To see env: echo sh(returnStdout: true, script: 'env')
|
||||
properties([
|
||||
buildDiscarder(logRotator(
|
||||
numToKeepStr: '30',
|
||||
daysToKeepStr: '30',
|
||||
))
|
||||
])
|
||||
|
||||
env.LANG="en_US.UTF-8"
|
||||
env.LANGUAGE="en_US.UTF-8"
|
||||
|
|
Loading…
Reference in New Issue