Scissors/Jenkinsfile

25 lines
555 B
Text
Raw Normal View History

2022-04-04 18:21:20 -04:00
pipeline {
agent any
stages {
stage('applyPatches') {
2022-04-04 18:21:20 -04:00
steps {
2022-04-07 01:05:56 -04:00
withGradle {
sh './gradlew applyPatches --no-daemon'
}
}
}
stage('paperclipJar') {
steps {
withGradle {
2022-04-07 01:05:56 -04:00
sh './gradlew paperclipJar --no-daemon'
}
2022-04-04 18:21:20 -04:00
}
}
}
post {
always {
archiveArtifacts artifacts: 'build/libs/*.jar', fingerprint: true
2022-04-06 22:45:16 -04:00
cleanWs()
2022-04-04 18:21:20 -04:00
}
}
}