Jenkins increase history retention

This commit is contained in:
Daniel Agar
2019-02-24 12:13:15 -05:00
parent 447e0be250
commit 703e28f7a8
5 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -100,7 +100,7 @@ pipeline {
} }
options { options {
buildDiscarder(logRotator(numToKeepStr: '10', artifactDaysToKeepStr: '14')) buildDiscarder(logRotator(numToKeepStr: '10', artifactDaysToKeepStr: '30'))
timeout(time: 60, unit: 'MINUTES') timeout(time: 60, unit: 'MINUTES')
} }
} // pipeline } // pipeline
+1 -1
View File
@@ -119,7 +119,7 @@ pipeline {
} }
options { options {
buildDiscarder(logRotator(numToKeepStr: '5', artifactDaysToKeepStr: '14')) buildDiscarder(logRotator(numToKeepStr: '10', artifactDaysToKeepStr: '30'))
timeout(time: 60, unit: 'MINUTES') timeout(time: 60, unit: 'MINUTES')
} }
} // pipeline } // pipeline
+1 -1
View File
@@ -81,7 +81,7 @@ pipeline {
CI = true CI = true
} }
options { options {
buildDiscarder(logRotator(numToKeepStr: '5', artifactDaysToKeepStr: '14')) buildDiscarder(logRotator(numToKeepStr: '10', artifactDaysToKeepStr: '30'))
timeout(time: 120, unit: 'MINUTES') timeout(time: 120, unit: 'MINUTES')
} }
} }
+1 -1
View File
@@ -83,7 +83,7 @@ pipeline {
CI = true CI = true
} }
options { options {
buildDiscarder(logRotator(numToKeepStr: '5', artifactDaysToKeepStr: '30')) buildDiscarder(logRotator(numToKeepStr: '20', artifactDaysToKeepStr: '30'))
timeout(time: 60, unit: 'MINUTES') timeout(time: 60, unit: 'MINUTES')
} }
} }
Vendored
+1 -1
View File
@@ -596,7 +596,7 @@ pipeline {
GIT_COMMITTER_NAME = "PX4BuildBot" GIT_COMMITTER_NAME = "PX4BuildBot"
} }
options { options {
buildDiscarder(logRotator(numToKeepStr: '10', artifactDaysToKeepStr: '30')) buildDiscarder(logRotator(numToKeepStr: '20', artifactDaysToKeepStr: '30'))
timeout(time: 60, unit: 'MINUTES') timeout(time: 60, unit: 'MINUTES')
} }
} }