Created
June 10, 2016 07:47
-
-
Save michaelneale/df8cd9e22ccf9c1c42de6c78e0e98e09 to your computer and use it in GitHub Desktop.
This file contains hidden or 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 { | |
stage "Prepare environment" | |
checkout scm | |
def environment = docker.build 'cloudbees-node' | |
environment.inside { | |
stage "Checkout and build" | |
sh "npm install" | |
stage "Install gulp" | |
sh 'npm install gulp-cli' | |
stage 'Test' | |
sh './node_modules/.bin/gulp' | |
} | |
stage "Cleanup" | |
deleteDir() | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment