How do two builds belonging to two projects be run on single build engine simultaneously
![]()
We have project1 with buildengline1 and project2 having build definition (with same build engine1). When I trigger the builds from both the projects, what I have observed it they run one by one. Is there a way to trigger them simultaneously.
|
One answer
![]()
No, the JBE only supports serial builds, so if you need to run multiple build simultaneously you need to create multiple build engines to service your requests.
This is definitely required if you trigger one build from another as this will create a deadlock without multiple engines to service the cascading build request(s).
-Sean |