Jenkins 在工作区之外构建

发布于 2024-11-08 11:31:58 字数 349 浏览 0 评论 0原文

我是 Jenkins/Hudson 的新手,正在尝试从 buildbot 迁移基于 C make 的项目。由于遗留原因,构建系统被硬编码为在版本化源代码树 (git) 之外(即上面的一个目录)的单独目录中构建。例如:

workspace
  .git
  foo
  bar
build
  artifacts

除了最终在工作区之外创建一个目录这一事实之外,Jenkins 不会识别上面的 build/ 目录中的项目来存档为工件。

我怎样才能让这种构建系统与 Hudson 一起工作?构建源代码树并不是一个短期选择。我发现的唯一选项是“使用自定义工作区”,但所有这些都会将工作区目录硬编码到其他目录。

I am new to Jenkins/Hudson and am trying to migrate a C make-based project from buildbot. For legacy reasons, the build system is hard-coded to build outside of the versioned source tree (git), one directory above, in a separate directory. E.g.:

workspace
  .git
  foo
  bar
build
  artifacts

Besides the fact that it ends up creating a directory outside the workspace, Jenkins won't recognize items in the build/ directory above to archive as artifacts.

How can I make this kind of build system work with Hudson? Building in-source-tree is not a short-term option. The only option I found was "use custom workspace," but all this does it hard-code the workspace directory to some other directory.

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

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

发布评论

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

评论(2

夜光 2024-11-15 11:31:58

回答我自己的问题:Jenkins git 插件中确实有一个选项可以签出到本地子目录而不是工作区的根目录。使用 git 插件,单击“高级”按钮并填写“Repo 的本地子目录(可选)”字段。

To answer my own question: there is indeed an option in Jenkins git plugin to check out to a local subdirectory instead of the root of the workspace. With the git plugin, click on the Advanced button and fill in the field "Local subdirectory for repo (optional)".

输什么也不输骨气 2024-11-15 11:31:58

我没有找到 djs 提到的选项,但您可以指定不同的工作目录:

  1. 配置作业
  2. 扩展项目设置
  3. 使用自定义工作空间

这可以设置为您想要的任何位置,也可以设置为工作空间不同的工作。

I don't find the option that djs mentioned, but you can specify a different work directory:

  1. Configure job
  2. Extended Project settings
  3. Use custom work space

This can be set to everywhere you want, also the workspace of a different job.

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