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
Instead of parallel cleanupScripts you can use like this:
parallel cleanupScripts
cleanupScripts.each{ key, value -> value() }