Update Jenkinsfile

This commit is contained in:
Telesphoreo 2023-09-23 14:12:22 -05:00
parent 7d86fb8c0f
commit 1658b50a44

11
Jenkinsfile vendored
View File

@ -4,24 +4,17 @@ pipeline {
GITHUB_BRANCH = "${BRANCH_NAME}" GITHUB_BRANCH = "${BRANCH_NAME}"
} }
stages { stages {
stage('clean') {
steps {
withGradle {
sh './gradlew cleanCache'
}
}
}
stage('applyPatches') { stage('applyPatches') {
steps { steps {
withGradle { withGradle {
sh './gradlew applyPatches' sh './gradlew applyPatches --no-daemon --refresh-dependencies'
} }
} }
} }
stage('paperclipJar') { stage('paperclipJar') {
steps { steps {
withGradle { withGradle {
sh './gradlew createReobfPaperclipJar --stacktrace --info' sh './gradlew createReobfPaperclipJar --no-daemon --refresh-dependencies'
} }
sh """ sh """
#!/bin/sh #!/bin/sh