Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
124 views
in Technique[技术] by (71.8m points)

Monorepo with several connected Bazel Workspaces - are there any "traps" to consider?

I'm working in an organization that is moving towards a Monorepo (C/C++). In short: we are considering having several connected Bazel Workspaces within this Monorepo, using local_repository. This is in contrast with joining the original components into one big Workspace. If someone has practical experience with this, or know what the original design intention is, that would be incredibly helpful for us.

The major motivation for this is developer happiness. We already have long paths in C++ include statements, Bazel labels, etc. and I have found no good ways of creating "modules" where we can reduce these paths to being relative to the module root instead of the repository root. Looking online, I haven't found any examples of people splitting their repository into several Workspaces, so I get a feeling that there are good reasons to avoid it.

Is it advised against having several Workspaces corresponding to the original components? If so, why? I've made a proof-of-concept that shows that building works just fine but I can imagine that auto-completion, querying and some other features don't work well over Workspace boundaries.

As I said, I have found very little information about this online. There's Single or multiple bazel WORKSPACE should be used for monolithic repo? but the accepted answer glosses over the advantages of having several Workspaces and doesn't go into detail of why it would be a bad idea to do so.

question from:https://stackoverflow.com/questions/65901910/monorepo-with-several-connected-bazel-workspaces-are-there-any-traps-to-cons

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

I'm assuming you're only planning to support builds in one "top-level" WORKSPACE. Otherwise, you have to duplicate all the dependencies (or put them in a big macro that gets used in each), and they each have their own output root (which includes the action cache).

The big developer unfriendliness issue I see with that is that bazel build (and other commands) look for the first WORKSPACE they find going up the directory tree. It's similar to how git looks for a .git folder. That means running a bazel command from the wrong directory produces weird errors when it finds the "wrong" WORKSPACE. You can mitigate that by making all the other WORKSPACE files look like this:

fail("Do not build from this directory, try the root folder instead.")

At least it's a clear error then, but it's still annoying to have to cd before running a build.

Have you considered doing includes = ["."] for all your rules, and only creating BUILD files in the module root directories? That should let you do the include paths the way you're describing, while keeping it all in the same workspace.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...