mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2025-07-18 13:35:50 +00:00
Moved input step to its own stage.
This commit is contained in:
parent
4ee9ced1a9
commit
7852dc58b8
1 changed files with 7 additions and 1 deletions
6
Jenkinsfile
vendored
6
Jenkinsfile
vendored
|
@ -13,6 +13,12 @@ pipeline {
|
||||||
agent any
|
agent any
|
||||||
steps {
|
steps {
|
||||||
sh "mvn clean package"
|
sh "mvn clean package"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
stage('Approve for QA') {
|
||||||
|
agent any
|
||||||
|
steps {
|
||||||
input 'Sally forth?'
|
input 'Sally forth?'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue