Browse Source

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

sbg
Daniel Agar 6 years ago
parent
commit
ee8e3c4527
  1. 2
      .ci/Jenkinsfile-SITL_tests
  2. 2
      .ci/Jenkinsfile-compile
  3. 2
      .ci/Jenkinsfile-hardware
  4. 2
      Jenkinsfile

2
.ci/Jenkinsfile-SITL_tests

@ -201,7 +201,7 @@ pipeline { @@ -201,7 +201,7 @@ pipeline {
}
options {
buildDiscarder(logRotator(numToKeepStr: '10', artifactDaysToKeepStr: '30'))
buildDiscarder(logRotator(numToKeepStr: '5', artifactDaysToKeepStr: '30'))
timeout(time: 60, unit: 'MINUTES')
}
} // pipeline

2
.ci/Jenkinsfile-compile

@ -158,7 +158,7 @@ pipeline { @@ -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')
}
}

2
.ci/Jenkinsfile-hardware

@ -140,7 +140,7 @@ pipeline { @@ -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')
}
}

2
Jenkinsfile vendored

@ -501,7 +501,7 @@ pipeline { @@ -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')
}
}

Loading…
Cancel
Save