From b2f423c4ec56e29d0ffff26c61cb631cc1ca3fff Mon Sep 17 00:00:00 2001 From: Telesphoreo Date: Sun, 26 Jun 2022 22:47:49 -0500 Subject: [PATCH] Remove build discarder --- Jenkinsfile | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index b42e1e4..d0c7cf7 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -3,21 +3,18 @@ pipeline { environment { GITHUB_BRANCH = "${BRANCH_NAME}" } - options { - buildDiscarder logRotator(artifactDaysToKeepStr: '', artifactNumToKeepStr: '', daysToKeepStr: '', numToKeepStr: '5') - } stages { stage('applyPatches') { steps { withGradle { - sh './gradlew applyPatches --no-daemon' + sh './gradlew applyPatches --no-daemon --refresh-dependencies' } } } stage('paperclipJar') { steps { withGradle { - sh './gradlew paperclipJar --no-daemon' + sh './gradlew paperclipJar --no-daemon --refresh-dependencies' } } }