Skip to content

Instantly share code, notes, and snippets.

@baumato
Created April 4, 2019 15:37
Show Gist options
  • Save baumato/2e539f848a9ec8854f5b76d3e84a13e4 to your computer and use it in GitHub Desktop.
Save baumato/2e539f848a9ec8854f5b76d3e84a13e4 to your computer and use it in GitHub Desktop.
Jenkinsfile: Useful options
pipeline {
agent { label 'agent' }
options {
disableConcurrentBuilds()
skipStagesAfterUnstable()
timestamps()
buildDiscarder(logRotator(numToKeepStr: '30', artifactNumToKeepStr: '15'))
}
//...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment