Remove build discarder

This commit is contained in:
Telesphoreo 2022-06-26 22:47:49 -05:00
parent 7885894176
commit b2f423c4ec
1 changed files with 2 additions and 5 deletions

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