I have a series of stages that perform quick checks. I want to perform them all, even if there are failures. For example:
stage(\'one\') { node {
Use
propagate: false
flag to move to next stage when previous stage fails.
example:
stage(''){ node(''){ build job: '', propagate: false } } stage(''){ node(''){ build job: '' } }