TFS:如何在成功构建时自动关闭匹配的工作项?
我们使用持续集成作为构建自动化的一部分。 对于每次签入,tfs 构建服务器都会构建项目并在成功后部署到我们的 Web 服务器。
当构建失败时,它会自动创建一个新的 Bug,其中包含构建失败的详细信息。
由于 CI 和服务器上的活动,这可能会导致在构建再次成功之前出现 10 或 20 个工作项失败。
所以,我有两个选择。 我想让构建过程查看是否已存在因构建失败而打开的工作项,然后向其添加详细信息; 或者,我希望构建服务器在再次开始工作时自动关闭所有构建失败项目。
有任何想法吗?
We are using continuous integration as part of our build automation. For every check in, the tfs build server builds the project and deploys to our web servers on success.
When the build fails, it automatically creates a new Bug with the details of the build failure.
Due to CI and the activity on the server, this might result in 10 or 20 failure work items before the build starts succeeding again.
So, I have two options. I'd like to either have the build process see if an open work item already exists for a build failure and just add details to that; OR, I'd like the build server to close all of the build failure items automatically when it starts working again.
Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以创建 MSBuild 任务来执行这些选项之一。 这是我用来帮助您入门的一段类似代码,但由于我不知道您的工作项或流程的详细信息,您必须更改它。
此代码获取与构建关联的所有工作项并更新其状态。
如果您选择第一个选项,则只需更改 UpdateWorkItemStatus 方法并更新任何现有 WI。 对于第二种方法,您需要做更多的工作,因为您需要查找先前的构建而不是将其作为输入。
You can create a MSBuild Task to do either of these options. Here is a similar piece of code I use to get you started but since I don't know the details of your work item or process you will have to change it.
This code takes all of the work items associated with a build and updates their status.
If you select your first option you can just change the UpdateWorkItemStatus method and update any existing WIs. For the Second method you will need to do a bit more work as you need to look up the prior build rather than take it as a input.