There are several build processes that should be ran on the same code base.
Not in a random order, but in a specifically arranged sequence, one after the other:
┌──────────────┐ ┌────────────────────┐ ┌──────────────────────┐
│ compile code │ -> │ check the binaries │ -> │ Do something else... │
└──────────────┘ └────────────────────┘ └──────────────────────┘
How do you do that?