Given a certain number of tasks in a job, how can I group some of the tasks so others can run independently from this group and others run when this group is successfully accomplished. Say:
We have the tasks: T1, T2, T3, T4 and T5
- T1 and T2 should run together (doesn't matter the order)
- T3 should run only if both where successful.
- T4 and T5 will run independent of T1, T2 and T3 status.