您可以配置 TeamCity“Artifacts”吗? 重新检查到源代码管理?

发布于 2024-07-15 11:14:47 字数 185 浏览 6 评论 0原文

我希望将 TeamCity Artifacts 重新签入源代码管理。

我以前使用过 TFS Integrator。 所以我习惯了它的方法,通过配置,它可以将输出构建签入源代码管理。 然后,当人们进行 get 操作时,他们将收到这些文物。

或者是否有一种完全不同的方法可以通过 TeamCity 实现这一目标?

I would like to have TeamCity Artifacts be checked back into source control.

I have used TFS Integrator before. So I am used to its approach where, through config, it can check in the output builds back into source control. Then when people do a get they will receive these artifacts.

Or is there a completely different way of achieving this with TeamCity?

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

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

发布评论

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

评论(1

要走就滚别墨迹 2024-07-22 11:14:47

我能想到的两种方法是

  • VCS 标签指定

工作目录中要标记的路径以及相对于主干的位置以将其签入。

/project/trunk/dist=>/project/tags/%system.build.number%
  • TCD4/VCS+Labeling" rel="nofollow noreferrer">jetbrains在构建脚本中

手动签入构建脚本中的工件,并在签入的位置添加忽略,这样就不会再次触发构建。

e.g. use -:user=devA:project/sources/** to prevent build triggering after a change of VCS user devA  made in subfolder project/sources/**

The two ways I can think of are

  • VCS Labeling

specify a path in your working directory to label and the location relative to the trunk to check it in. jetbrains explains it here

/project/trunk/dist=>/project/tags/%system.build.number%
  • from the build script

manually checkin the artifacts from the build script and add an ignore to the place where your checking in to so it doesn't trigger the build again.

e.g. use -:user=devA:project/sources/** to prevent build triggering after a change of VCS user devA  made in subfolder project/sources/**
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文