Dont build on jenkins

This commit is contained in:
modmuss50 2018-07-19 08:20:57 +01:00
parent 2b74ea1ebe
commit 4ea0dc1e9a
No known key found for this signature in database
GPG key ID: 773D17BE8BF49C82

16
Jenkinsfile vendored
View file

@ -1,16 +0,0 @@
node {
stage 'Checkout'
checkout scm
stage 'Build'
sh "rm -rf build/libs/"
sh "rm -rf .gradle/asmInjector/"
sh "chmod +x gradlew"
sh "./gradlew build mtDocGen publish curseTools --refresh-dependencies --stacktrace"
stage "Archive artifacts"
archive 'build/libs/*'
}