Remove jenkins file, moving to a manual build job

This commit is contained in:
modmuss50 2019-07-12 18:52:44 +01:00
parent ab421b9c5c
commit b8deb199a0

19
Jenkinsfile vendored
View file

@ -1,19 +0,0 @@
pipeline {
agent any
stages {
stage ('Build') {
when {
branch 'master'
}
steps {
sh "rm -rf build/libs/"
sh "chmod +x gradlew"
sh "./gradlew clean --stacktrace"
sh "./gradlew build publish curseforge --refresh-dependencies --stacktrace"
archiveArtifacts artifacts: '**/build/libs/*.jar', fingerprint: true
}
}
}
}