Skip to content

Instantly share code, notes, and snippets.

@basilevs
Last active October 11, 2024 09:58
Show Gist options
  • Save basilevs/8085fd7837f0616d1ed29981ebfdb102 to your computer and use it in GitHub Desktop.
Save basilevs/8085fd7837f0616d1ed29981ebfdb102 to your computer and use it in GitHub Desktop.
Minimal declarative Jenkins pipeline definition
pipeline {
agent any
options {
buildDiscarder(logRotator(numToKeepStr: '2', daysToKeepStr: '7', removeLastBuild: true))
}
stages {
stage("test") {
steps {
echo "q"
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment