DEV Community

Discussion on: How long does it take to build your project?

Collapse
 
kodengo_com profile image
Kodengo

It's possible to build it in modules. The team used to do it like that but they faced issues in the downstream projects when tests suddenly started to fail. This issue can be solved by specifying versions to each module, but then maintaining those versions becomes too complicated. For example each module has to have its own release cycle, and all depending modules have to be updated accordingly.

Collapse
 
rhymes profile image
rhymes

Without a little more detail it's hard to say but it seems like a good candidate for an app to be split in different apps that communicate with each other. What happens if there's a build error at 2hrs and 29 minutes? You need to build again from scratch after you fix the error?