如何使用 repo 作为 Hudson 上的存储库

发布于 2024-08-17 16:42:52 字数 250 浏览 4 评论 0原文

我正在开发一个项目,使用 repo 来控制一百多个 git 存储库,并使用 Hudson 作为持续集成服务器。项目的文件结构是这样的:

./.repo
./a/.git
./b/.git
./b/c/.git 
./b/c/d/.git
... more than a hundred gits

整个项目必须一起构建,也就是说,每个git仓库不能单独构建。有没有办法使用Hudson与管理大量git的repo一起工作?

I work on a project using repo to control over a hundred git repositories and Hudson as continuous integration server. The file structure of the project is like:

./.repo
./a/.git
./b/.git
./b/c/.git 
./b/c/d/.git
... more than a hundred gits

The whole project must be built together, in other words, each git repository cannot be built separately. Is there any way to use Hudson work with repo which manages large number of git?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

你在看孤独的风景 2024-08-24 16:42:52

创建一个“协调器”顶级项目,该项目完全由指向子模块的 Git 子模块 组成-projects 可能是一个还可以的解决方案。然后,Hudson 调用的 git 命令,包括克隆、提交和标记,可以从顶级项目完成。

Creating a "coordinator" top level project that is entirely composed of Git submodules pointing to the sub-projects might be a passable solution. Then, Hudson-invoked git commands, including cloning and committing and tagging could be done from the top project.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文