Skip to content

Instantly share code, notes, and snippets.

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