In a declarative pipeline parallel block, it is possible to specify multiple stages to execute in parallel on agents with the same node.
Let's say we have 3 stages defined and only two nodes available.
Stage A: 2 hrs Stage B: 2 hrs Stage C: 4 hrs
I want to be sure that stage C starts first, because then the total execution time will be 4 hrs. If A and B start first, then total execution will be 6 hours.
Is there any way to ensure Stage C is given priority to start first when all three stages are started using a parallel block?