Jenkins reduce number of builds kept (10 -> 5)

This commit is contained in:
Daniel Agar
2018-11-30 07:54:11 -05:00
parent 88a8957841
commit ee8e3c4527
4 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -201,7 +201,7 @@ pipeline {
}
options {
buildDiscarder(logRotator(numToKeepStr: '10', artifactDaysToKeepStr: '30'))
buildDiscarder(logRotator(numToKeepStr: '5', artifactDaysToKeepStr: '30'))
timeout(time: 60, unit: 'MINUTES')
}
} // pipeline
+1 -1
View File
@@ -158,7 +158,7 @@ pipeline {
CI = true
}
options {
buildDiscarder(logRotator(numToKeepStr: '10', artifactDaysToKeepStr: '30'))
buildDiscarder(logRotator(numToKeepStr: '5', artifactDaysToKeepStr: '30'))
timeout(time: 60, unit: 'MINUTES')
}
}
+1 -1
View File
@@ -140,7 +140,7 @@ pipeline {
CI = true
}
options {
buildDiscarder(logRotator(numToKeepStr: '10', artifactDaysToKeepStr: '30'))
buildDiscarder(logRotator(numToKeepStr: '5', artifactDaysToKeepStr: '30'))
timeout(time: 60, unit: 'MINUTES')
}
}
Vendored
+1 -1
View File
@@ -501,7 +501,7 @@ pipeline {
GIT_COMMITTER_NAME = "PX4BuildBot"
}
options {
buildDiscarder(logRotator(numToKeepStr: '10', artifactDaysToKeepStr: '30'))
buildDiscarder(logRotator(numToKeepStr: '5', artifactDaysToKeepStr: '30'))
timeout(time: 60, unit: 'MINUTES')
}
}