mirror of
https://github.com/corda/corda.git
synced 2024-12-19 04:57:58 +00:00
limit number of builds kept within jenkins history for regression builds (#5693)
This commit is contained in:
parent
86f1f9e371
commit
7fb404bd85
5
.ci/dev/regression/Jenkinsfile
vendored
5
.ci/dev/regression/Jenkinsfile
vendored
@ -5,7 +5,10 @@ killAllExistingBuildsForJob(env.JOB_NAME, env.BUILD_NUMBER.toInteger())
|
||||
|
||||
pipeline {
|
||||
agent { label 'k8s' }
|
||||
options { timestamps() }
|
||||
options {
|
||||
timestamps()
|
||||
buildDiscarder(logRotator(daysToKeepStr: '7', artifactDaysToKeepStr: '7'))
|
||||
}
|
||||
|
||||
environment {
|
||||
DOCKER_TAG_TO_USE = "${env.GIT_COMMIT.subSequence(0, 8)}"
|
||||
|
Loading…
Reference in New Issue
Block a user