Created
April 4, 2019 15:37
-
-
Save baumato/2e539f848a9ec8854f5b76d3e84a13e4 to your computer and use it in GitHub Desktop.
Jenkinsfile: Useful options
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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