limit number of mobile builds saved by Jenkins

Signed-off-by: Jakub Sokołowski <jakub@status.im>
This commit is contained in:
Jakub Sokołowski 2018-08-13 08:14:54 -04:00
parent b87cfe21f0
commit d292184aa8
No known key found for this signature in database
GPG Key ID: 4EF064D0E6D63020
2 changed files with 13 additions and 0 deletions

7
ci/Jenkinsfile vendored
View File

@ -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"

View File

@ -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"