Hi everyone, I see that gradle can execute unit tests in parallel, but what about "regular" tasks? I have many tasks that could be executed in parallel as they don't depend on each other:
Currently, my build happens like this (letters represents task names): A ->. B1 -> B2 -> B3 -> C -> D1 -> D2 -> E now, B1, B2, B3 depend only on A and D1 & D2 depend only on C. Can gradle be instructed to run B1& B2 & B3 in parallel and launch C only when they are completed (and successful) ? Thanks. Jp
