yarn/Jenkinsfile

16 lines
229 B
Plaintext
Raw Permalink Normal View History

2016-09-09 08:47:32 -04:00
node {
stage 'Checkout'
2016-09-10 06:35:26 -04:00
checkout scm
2016-09-09 08:47:32 -04:00
stage 'Build'
sh "rm -rf build/libs/"
sh "chmod +x gradlew"
sh "./gradlew build publish --refresh-dependencies"
2016-09-09 08:47:32 -04:00
stage "Archive artifacts"
archive 'build/libs/*'
}