特定分行的门控登记
我有多个分支,对于每个分支我都有特定的构建过程。 如何为特定分支设置门控构建流程?
示例
开发分支 ->对于开发人员来说速度很快 构建过程有主要的集成测试
发布分支 ->生产前检查。 包含负载测试和记录步骤包含自动化 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要有两个单独的构建定义:一个构建您的“开发”分支,另一个构建您的“开发”分支。构建您的“发布”分支。
两者都可以基于相同的构建过程模板,它们的区别是:
有关如何在 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:
A basic walkthrough on how to setup a build definition in TFS2010 can be found here