yep, it was using an older version of netty

This commit is contained in:
Telesphoreo 2022-06-13 22:37:50 -05:00
parent 07bf264e8e
commit 483a476d6b
1 changed files with 3 additions and 11 deletions

14
Jenkinsfile vendored
View File

@ -6,32 +6,24 @@ pipeline {
options { options {
buildDiscarder logRotator(artifactDaysToKeepStr: '', artifactNumToKeepStr: '', daysToKeepStr: '', numToKeepStr: '5') buildDiscarder logRotator(artifactDaysToKeepStr: '', artifactNumToKeepStr: '', daysToKeepStr: '', numToKeepStr: '5')
} }
stages {
stage('cleanCache') {
steps {
withGradle {
sh './gradlew cleanCache'
}
}
}
stage('applyPatches') { stage('applyPatches') {
steps { steps {
withGradle { withGradle {
sh './gradlew applyPatches --refresh-dependencies' sh './gradlew applyPatches --no-daemon --refresh-dependencies'
} }
} }
} }
stage('paperclipJar') { stage('paperclipJar') {
steps { steps {
withGradle { withGradle {
sh './gradlew createReobfPaperclipJar --refresh-dependencies' sh './gradlew createReobfPaperclipJar --no-daemon --refresh-dependencies'
} }
} }
} }
stage('test') { stage('test') {
steps { steps {
withGradle { withGradle {
sh './gradlew test' sh './gradlew test --no-daemon'
} }
} }
} }