Skip to content
Snippets Groups Projects
Commit ee8e3c45 authored by Daniel Agar's avatar Daniel Agar
Browse files

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

parent 88a89578
No related branches found
No related tags found
No related merge requests found
......@@ -201,7 +201,7 @@ pipeline {
}
options {
buildDiscarder(logRotator(numToKeepStr: '10', artifactDaysToKeepStr: '30'))
buildDiscarder(logRotator(numToKeepStr: '5', artifactDaysToKeepStr: '30'))
timeout(time: 60, unit: 'MINUTES')
}
} // 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')
}
}
......
......@@ -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')
}
}
......@@ -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')
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment