| Usecase: As a user I want to prototype how the stage visualization will work, so I set up my pipeline like so:
pipeline {
stages {
parallel {
stage ('foo') {
// placeholder
}
stage ('bar') {
// placeholder
}
stage ('manchu') {
// placeholder
}
}
}
}
but now I cannot view that pipeline visualization as the model fails validation. Similarly I cannot test adding in the logic of each individual stage piecemeal. The current workaround requires that I add a echo 'placeholder' step which is non-intuitive to new users |