Skip to content

Instantly share code, notes, and snippets.

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