For example if I add four (blank) script tasks A1, A2, B1, and B2, where A2 has a constraint to run after A1 and B2 has a constraint to run after B1, but neither A1 nor B1 have constraints, then what order will the tasks run?
When I try this it seems to do A1, then B1, then A2, then B2. But why? This question out of curiosity.
Edited to add:
I've specifically set parallelism to 1 and added message boxes so I can see the order it's taking. It always takes the same order that I note above, but was curious as to if there was any logic as to why it chooses this order.
It seems to do all the level one (unconstrained) tasks first then continue with constrained tasks.