Skip to content

Instantly share code, notes, and snippets.

@RickMoynihan
Created December 28, 2016 13:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save RickMoynihan/d2e433e15a7e5b2f6d95a1ce7bffb2a8 to your computer and use it in GitHub Desktop.
Save RickMoynihan/d2e433e15a7e5b2f6d95a1ce7bffb2a8 to your computer and use it in GitHub Desktop.
node {
checkout scm
stage('Test') {
sh 'pwd'
sh 'pwd > pwd-out'
sh 'lein test'
}
stage('Install') {
sh 'lein install'
}
stage('Deploy') {
sh 'lein deploy clojars'
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment