Jenkinsfile

This commit is contained in:
modmuss50 2017-06-11 21:23:42 +01:00
parent 29cf9fa90b
commit 5d5d88c193
No known key found for this signature in database
GPG key ID: 773D17BE8BF49C82
2 changed files with 16 additions and 0 deletions

15
Jenkinsfile vendored Normal file
View file

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

1
settings.gradle Normal file
View file

@ -0,0 +1 @@
rootProject.name = "TechReborn-1.12"