But we are suffering a problem with the communication between Jenkins and Bitbucket server, when you launch >5 jobs simultaneously, the 6^th^ job fails with an error message .
This can be emulated using : { code:java} stage("Launch all") { parallel( test1 : {build job: 'test1', wait: true}, test2 : {build job: 'test2', wait: true}, test3 : {build job: 'test3', wait: true}, test4 : {build job: 'test4', wait: true}, test5 : {build job: 'test5', wait: true}, test6 : {build job: 'test6', wait: true}, test7 : {build job: 'test7', wait: true}, test8 : {build job: 'test8', wait: true}, test9 : {build job: 'test9', wait: true}, ) {code} Where job 'testX' contains the previous one commented.
{ noformat} |
|
|