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
8
Jenkinsfile
vendored
8
Jenkinsfile
vendored
|
@ -13,8 +13,14 @@ pipeline {
|
|||
agent any
|
||||
steps {
|
||||
sh "mvn clean package"
|
||||
input 'Sally forth?'
|
||||
}
|
||||
}
|
||||
|
||||
stage('Approve for QA') {
|
||||
agent any
|
||||
steps {
|
||||
input 'Sally forth?'
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue