|
|
|
|
|
by zaphar
830 days ago
|
|
There are mostly only a few ways to make builds faster. * Ship less code (Very hard to get a large org to do) * Rebuild the same things less often. Requires using build tooling that supports this org wide, Still hard to do but not as hard as shipping less code. * Build more pieces in parallel. Also requires using build tooling that supports it org wide as well as structuring the code in such a way that it is amenable to parallel building. These are all expensive investments that will pay off huge if you do them but can be quite difficult to justify until you reach a certain size. |
|