Hacker News new | ask | show | jobs
by pards 1957 days ago
Is there a good solution for only building the projects that have changed? We looked at bazel.build but found it to be too complex.
1 comments

CI systems (or surrounding community) typically give a mechanism for “last successful commit”. Executing a diff of changes and detecting from that which projects should be built from is something you can build using that data. If you have a lot of interconnected project dependencies in a mono repo, this logic might be more challenging to write, but there it is.