特定分行的门控登记

发布于 2024-12-10 02:41:18 字数 226 浏览 0 评论 0原文

我有多个分支,对于每个分支我都有特定的构建过程。 如何为特定分支设置门控构建流程?

示例

开发分支 ->对于开发人员来说速度很快 构建过程有主要的集成测试

发布分支 ->生产前检查。 包含负载测试和记录步骤包含自动化 UI 测试

现在,对于我的开发,我希望每次开发人员提交更改时都运行测试。但我不希望每次都运行发布版本。

我该如何设置?

I have multiple branches and for every one i have specific build process.
How do i set up gated build process for specific branch?

example

Development branch
-> fast for developers
build process this has main intergation tests

Release branch
-> checkin before production.
contain load testing and records steps contains automated UI tests

Now for my development i want to run tests every time when developer commits changes. but i do not want release build to run every time.

How do i set this up?

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

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

发布评论

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

评论(1

漆黑的白昼 2024-12-17 02:41:18

您需要有两个单独的构建定义:一个构建您的“开发”分支,另一个构建您的“开发”分支。构建您的“发布”分支。

两者都可以基于相同的构建过程模板,它们的区别是:

  1. “工作空间”中的开发构建目标是开发分支的路径 - 相对构建目标是发布分支的路径
  2. (这是您的主要问题)触发器=“门控” check-in”用于您的 Dev-build,Trigger =“Manual”(或其他一些)用于您的 Rel-build
  3. Rel-build 可能会承担额外的测试任务。

有关如何在 TFS2010 中设置构建定义的基本演练,请参见 此处

You need to have two separate build definitions: One building your 'Development' branch & one building your 'Release' branch.

Both can base on the same Build process template and their differences are:

  1. Dev-build targets in 'Workspace' the path of your development branch - Rel-build targets the path of your release branch
  2. (This is you main question) Trigger = "Gated check-in" for your Dev-build, Trigger = "Manual" (or some other) for your Rel-build
  3. Rel-build will probably be tasked with additional tests.

A basic walkthrough on how to setup a build definition in TFS2010 can be found here

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