Created
September 16, 2017 18:13
-
-
Save jeffersonsouza/65d87d0030b51067aa4dec4d4af6a067 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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