I want to compile a large set of different bazel targets lets say [A, B, C, D] and understand which are broken. I have notice that if I launch: bazel build A bazel build B bazel build C bazel build D
It takes a lot of time, not because of compilation time, but because of bazel setup time.
Is there an alternative solution for making this compilation process faster, but still having the ability to understand which targets are broken and which not?
Thanks.