Skip to content

Commit

Permalink
Merge pull request #18376 from AdamBrousseau/serial_update_ref_job
Browse files Browse the repository at this point in the history
Add ability to run Update ref repo job serially
  • Loading branch information
pshipton authored Oct 31, 2023
2 parents a80c01f + c155dfe commit 33bc781
Showing 1 changed file with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,13 @@ timeout(time: 6, unit: 'HOURS') {
}
}

parallel jobs
if (params.PARALLEL) {
parallel jobs
} else {
jobs.each{ key, value ->
value()
}
}
}
}

Expand Down

0 comments on commit 33bc781

Please sign in to comment.