yarn/Jenkinsfile

20 lines
268 B
Plaintext
Raw 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"
2018-11-01 03:02:17 -04:00
sh "./gradlew build --refresh-dependencies"
stage 'Publish"
sh "./gradlew publish"
2016-09-09 08:47:32 -04:00
stage "Archive artifacts"
archive 'build/libs/*'
}