Re: How to properly use parallels in pipelines

2017-03-20 Thread Nick Le Mouton
I've been playing around with this as well, there doesn't seem to be a lot of documentation around using parallel in declarative pipelines, but this seems to work for us: stage('Code analysis') { steps { parallel ( lint: { //run lint },

How to properly use parallels in pipelines

2017-03-15 Thread Chris Overend
*parallel* ( 'windows': { stage('windows tests') { *parallel* ( *stage*('some_tests_1') { *parallel* ( some_tests_1, # is a chunk of tests ) }