Skip to content

Instantly share code, notes, and snippets.

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