3e4ade38a7
# Conflicts: # gradle/wrapper/gradle-wrapper.properties # src/main/java/net/fabricmc/loom/util/MixinRefmapHelper.java
15 lines
No EOL
228 B
Groovy
15 lines
No EOL
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"
|
|
} |