Skip to content

Instantly share code, notes, and snippets.

@jeffersonsouza
Created September 16, 2017 18:13
Show Gist options
  • Save jeffersonsouza/65d87d0030b51067aa4dec4d4af6a067 to your computer and use it in GitHub Desktop.
Save jeffersonsouza/65d87d0030b51067aa4dec4d4af6a067 to your computer and use it in GitHub Desktop.
node('nodejs') {
stage('Clean'){
echo 'Estou limpando...'
deleteDir()
}
stage('Checkout'){
echo 'Estou Checando...'
git 'https://github.com/jeffersonsouza/example-todo-api.git'
}
stage('build'){
echo 'Estou buildando...'
}
stage('Ship'){
echo 'Estou Enviando...'
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment