Running stages in parallel with Jenkins workflow / pipeline
问题 Please note: the question is based on the old, now called "scripted" pipeline format. When using "declarative pipelines", parallel blocks can be nested inside of stage blocks (see Parallel stages with Declarative Pipeline 1.2). I'm wondering how parallel steps are supposed to work with Jenkins workflow/pipeline plugin, esp. how to mix them with build stages. I know about the general pattern: parallel(firstTask: { // Do some stuff }, secondTask: { // Do some other stuff in parallel }) However,