From 3fca938ad8708f9dc43c9f4bf075891af4535014 Mon Sep 17 00:00:00 2001 From: Telesphoreo Date: Thu, 7 Apr 2022 16:07:56 -0500 Subject: [PATCH] Separate the steps for better visualization --- Jenkinsfile | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index cc14d59..44f276e 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -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' } }