Moved input step to its own stage.

This commit is contained in:
Christopher Jones 2017-09-01 13:36:49 -05:00
parent 4ee9ced1a9
commit 7852dc58b8

8
Jenkinsfile vendored
View file

@ -13,8 +13,14 @@ pipeline {
agent any agent any
steps { steps {
sh "mvn clean package" sh "mvn clean package"
input 'Sally forth?'
} }
} }
stage('Approve for QA') {
agent any
steps {
input 'Sally forth?'
}
}
} }
} }