attempting more fixes

This commit is contained in:
2023-09-23 13:12:54 -05:00
parent c1be123c27
commit f8f680cbf7
4 changed files with 19 additions and 7 deletions

11
Jenkinsfile vendored
View File

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