Jenkinsfile
This commit is contained in:
parent
29cf9fa90b
commit
5d5d88c193
2 changed files with 16 additions and 0 deletions
15
Jenkinsfile
vendored
Normal file
15
Jenkinsfile
vendored
Normal 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
1
settings.gradle
Normal file
|
@ -0,0 +1 @@
|
|||
rootProject.name = "TechReborn-1.12"
|
Loading…
Reference in a new issue