fabric-loom/Jenkinsfile

15 lines
228 B
Groovy

node {
stage 'Checkout'
checkout scm
stage 'Build'
sh "rm -rf build/libs/"
sh "chmod +x gradlew"
sh "./gradlew build -x test --refresh-dependencies"
stage "Archive artifacts"
sh "./gradlew publish"
}