Separate the steps for better visualization

This commit is contained in:
Telesphoreo 2022-04-07 16:07:56 -05:00
parent 3feb510c17
commit 3fca938ad8
1 changed files with 7 additions and 1 deletions

8
Jenkinsfile vendored
View File

@ -1,10 +1,16 @@
pipeline {
agent any
stages {
stage('build') {
stage('applyPatches') {
steps {
withGradle {
sh './gradlew applyPatches --no-daemon'
}
}
}
stage('paperclipJar') {
steps {
withGradle {
sh './gradlew paperclipJar --no-daemon'
}
}