Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Running Jenkins parallel tasks sequentially

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 run sequentially. I'm not seeing any way to specify the number of threads a parallel step uses or anything like that. Here is the basic code so far:

node('x') {
    stage('cleanup'){
        def cleanupScripts = [:]
        cleanupScripts[1] = { sh(script: "cleanup1.sh") }
        cleanupScripts[2] = { sh(script: "cleanup2.sh") }
        cleanupScripts[3] = { sh(script: "cleanup3.sh") }
        cleanupScripts[4] = { sh(script: "cleanup4.sh") }
        parallel cleanupScripts
    }
}

I'd like to be able to run those shell scripts sequentially without changing a lot of code.

like image 378
Mateo Avatar asked Jun 24 '26 08:06

Mateo


1 Answers

Instead of parallel cleanupScripts you can use like this:

cleanupScripts.each{ key, value ->
    value()
}
like image 189
cagatayo Avatar answered Jun 28 '26 19:06

cagatayo