Re: Manual step stage on BlueOcean/Jenkins2 pipeline

2017-05-11 Thread Kevin Burnett
use the input step , like this: timeout(time: 5, unit: 'DAYS') { input message: 'Approve deployment?' } it's helpful to wrap it in a timeout, so eventually the pipeline will stop (fail) if no one approves i

Manual step stage on BlueOcean/Jenkins2 pipeline

2017-05-11 Thread Thiago Carvalho Davila
Hello, I am migrating my old pipelines to pipeline as code of Jenkins2. I've been strugling to make manual step stages like stage('Deploy-Production'){}. It is autoexecuted if I just put it in the pipeline{}. What is the best practice here? Is there native support to manual step? Thanks, Thia