I have a upstream job that will run every night and should run some tests on downstream jobs and I have to do it during runtime.
Example :
- job1 will start running pre regression tests.
- job1 will trigger Job2 and Job3 with passing test commands .
- job1 will wait until Job2 and Job3 finish with the test commands.
- job2 and job3 should return test status when they are done .
- job1 will continue with testing .
Note : step 2-4 will have to run in loops, each time job1 will pass different test commands to job2 and job3 .
Does Jenkins has plugin that support that?
thanks .