Last active
October 11, 2024 09:58
-
-
Save basilevs/8085fd7837f0616d1ed29981ebfdb102 to your computer and use it in GitHub Desktop.
Minimal declarative Jenkins pipeline definition
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 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