CI Improvements (#94)

This commit is contained in:
2023-06-04 21:38:37 -05:00
committed by GitHub
parent 2073436f76
commit 79f013c021
Vendored
+4 -1
View File
@@ -6,7 +6,6 @@ pipeline {
stages { stages {
stage('applyPatches') { stage('applyPatches') {
steps { steps {
scmSkip(deleteBuild: true)
withGradle { withGradle {
sh './gradlew applyPatches --no-daemon --refresh-dependencies' sh './gradlew applyPatches --no-daemon --refresh-dependencies'
} }
@@ -17,6 +16,10 @@ pipeline {
withGradle { withGradle {
sh './gradlew paperclipJar --no-daemon --refresh-dependencies' 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') { stage('test') {