Skip to content

Instantly share code, notes, and snippets.

@evagonz
Created June 12, 2018 12:25
Show Gist options
  • Save evagonz/c34092ac618de8414a4da1777d816837 to your computer and use it in GitHub Desktop.
Save evagonz/c34092ac618de8414a4da1777d816837 to your computer and use it in GitHub Desktop.
#!/usr/bin/env groovy
stage('build') {
node('java8') {
// this is a comment
}
}
stage('test') {
node('testing') {
// this is where testing code goes
}
}
stage('deploy') {
node('deploy') {
// push stuff to aws or something
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment