Remove build discarder

This commit is contained in:
Telesphoreo 2022-06-26 22:48:53 -05:00
parent c09d7fa208
commit 310c7a953b

7
Jenkinsfile vendored
View File

@ -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 createReobfPaperclipJar --no-daemon'
sh './gradlew createReobfPaperclipJar --no-daemon --refresh-dependencies'
}
}
}