Running Jenkins parallel tasks sequentially

前端 未结 2 1470
醉话见心
醉话见心 2021-01-22 02:16

I\'m writing a new Jenkins pipeline and have a set of steps that I would eventually like to run in parallel. But while I\'m developing this pipeline I\'d like to force it to ru

2条回答
  •  有刺的猬
    2021-01-22 02:56

    Instead of parallel cleanupScripts you can use like this:

    cleanupScripts.each{ key, value ->
        value()
    }
    

提交回复
热议问题