Hi all i created build pipeline using downstream parameter build. For example,
In above example there is three pipeline
Job-1 => Job-A => Job-B => Job-C
Job-2 => Job-A => Job-B => Job-C
Job-3 => Job-A => Job-B => Job-C
In that Job-1, Job-2, Job-3 jobs are on same level and all have same downstream jobs like Job-A => Job-B => Job-C.
For the above example suppose flow for Job-1 is already in progress and currently executing Job-C in pipeline. At the same time suppose Job-3 is completed and it will try to trigger Job-A it should wait for completion of Job-C which is of the previous pipeline i.e. for Job-1. After completion of Job-C it will trigger Job-A for Job-3 pipeline. And it will continue for Job-2.
What should i do for same in my case. Hope you understand.