I have a jenkins setup with a bunch of pipelines. I wrote a new pipeline which can start all pipelines at once. I would like to build other stages, even if one of them fails
What worked for me:
'Task' : { build( job : "DemoJob-2", wait: false ) build( job : "DemoJob-3", wait: false ) }