-
Type:
Improvement
-
Resolution: Not A Defect
-
Priority:
Major
-
Component/s: other
Hello,
I have the custom build jenkins pipeline compatible plugins for deployment of packages in aws instances. I wish to deploye packages on different instances  parallely in pipeline mode using the below scriptÂ
parallel ( "stream 1" : { node { //my plugin call } }, "stream 2" : { node { //my plugin call } } )
Â
But still I see thje plugin is getting executed sequentially, like stream 1 first and stream 2 second. Is that plugin objects are not getting created in parallel way by jenkins. Do i need to have any config changes in Plugin to support the same.
I see GIT and sonarqube plugins for jenkins 2.0 support parallel run. Please advice what changes to be in plugin end to execute the runs parallely.