mirror of
https://github.com/AtlasMediaGroup/Scissors.git
synced 2024-11-28 10:05:59 -05:00
Separate the steps for better visualization
This commit is contained in:
parent
3feb510c17
commit
3fca938ad8
1 changed files with 7 additions and 1 deletions
8
Jenkinsfile
vendored
8
Jenkinsfile
vendored
|
@ -1,10 +1,16 @@
|
||||||
pipeline {
|
pipeline {
|
||||||
agent any
|
agent any
|
||||||
stages {
|
stages {
|
||||||
stage('build') {
|
stage('applyPatches') {
|
||||||
steps {
|
steps {
|
||||||
withGradle {
|
withGradle {
|
||||||
sh './gradlew applyPatches --no-daemon'
|
sh './gradlew applyPatches --no-daemon'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
stage('paperclipJar') {
|
||||||
|
steps {
|
||||||
|
withGradle {
|
||||||
sh './gradlew paperclipJar --no-daemon'
|
sh './gradlew paperclipJar --no-daemon'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue