From 483a476d6b380b081eaba10238186c487e970f6f Mon Sep 17 00:00:00 2001 From: Telesphoreo Date: Mon, 13 Jun 2022 22:37:50 -0500 Subject: [PATCH] yep, it was using an older version of netty --- Jenkinsfile | 14 +++----------- 1 file changed, 3 insertions(+), 11 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 088dd50..32bdc4b 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -6,32 +6,24 @@ pipeline { options { buildDiscarder logRotator(artifactDaysToKeepStr: '', artifactNumToKeepStr: '', daysToKeepStr: '', numToKeepStr: '5') } - stages { - stage('cleanCache') { - steps { - withGradle { - sh './gradlew cleanCache' - } - } - } stage('applyPatches') { steps { withGradle { - sh './gradlew applyPatches --refresh-dependencies' + sh './gradlew applyPatches --no-daemon --refresh-dependencies' } } } stage('paperclipJar') { steps { withGradle { - sh './gradlew createReobfPaperclipJar --refresh-dependencies' + sh './gradlew createReobfPaperclipJar --no-daemon --refresh-dependencies' } } } stage('test') { steps { withGradle { - sh './gradlew test' + sh './gradlew test --no-daemon' } } }