CI Improvements (#94)

This commit is contained in:
Telesphoreo 2023-06-04 21:38:37 -05:00 committed by GitHub
parent 2073436f76
commit 79f013c021
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 1 deletions

5
Jenkinsfile vendored
View File

@ -6,7 +6,6 @@ pipeline {
stages {
stage('applyPatches') {
steps {
scmSkip(deleteBuild: true)
withGradle {
sh './gradlew applyPatches --no-daemon --refresh-dependencies'
}
@ -17,6 +16,10 @@ pipeline {
withGradle {
sh './gradlew paperclipJar --no-daemon --refresh-dependencies'
}
sh """
#!/bin/sh
mv \${WORKSPACE}/build/libs/Scissors-*.jar \${WORKSPACE}/build/libs/scissors-\${BUILD_NUMBER}.jar
"""
}
}
stage('test') {