Skip to content

Instantly share code, notes, and snippets.

@ssbostan
Created July 18, 2021 09:46
Show Gist options
  • Save ssbostan/f96b6034d91c7a325998a4a1df5d8fa1 to your computer and use it in GitHub Desktop.
Save ssbostan/f96b6034d91c7a325998a4a1df5d8fa1 to your computer and use it in GitHub Desktop.
Jenkins pipeline syntax reference
pipeline {
agent any
stages {
stage("Build") {
steps {
echo "Build stage."
}
}
stage("Test") {
steps {
echo "Test stage."
}
}
stage("Release") {
steps {
echo "Release stage."
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment