我可以“停止”吗?唯一签入来自先前构建的 TFS 构建?
我想实现一种 CI,在每次签入时构建我的解决方案。然而,有一个问题,那就是我的构建脚本通常会自动更新某些文件,而这些文件不会更改实际编译的程序集。如果触发自动构建的唯一签入来自这些“内容”文件之一,是否有办法停止自动构建(或什至不启动)?
谢谢, 马修
I would like to implement a sort of CI where I build my solution on every checkin. There is one problem, however, and that is that my build scripts often will automatically update certain files that do not change the actual compiled assemblies. Is there a way to stop the automatic build (or to not even start) if the only check-in that's triggering it is from one of these "content" files?
Thanks,
Matthew
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以将 *NO_CI* 标记添加到这些更改的签入注释中,它们不会触发构建。搜索它,你会发现很多关于如何使用它的示例。
You can add the *NO_CI* tag to the checkin comment for these changes and they wont trigger a build. Bing it and you'll find lots of examples for how to use it.