Why and when to have multiple build agents?

一曲冷凌霜 提交于 2019-12-23 07:38:06

问题


Consider TFS 2010's ability for a Build Controller to have 1+ build agents. Since builds are a subjective topic to the team/environment, consider an environment where builds are performed on commit/check-in. Each Project Collection will have 10+ Team Projects, but perhaps only 1 or 2 are being committed to in a day.

  • When should a TFS administrator consider creating a new build agent?
  • Do multiple agents run in parallel?
  • When a single agent is defined to a Build Controller, does it run serially?
  • MSDN states: "if you set up your agents to have specialized capabilities..." . What does this mean? A technology/platform differentiator? How can you setup your agents to have specialized capabilities?
  • How can 'tagging' build agents be used effectively in an environment where builds are (typically) performed on each check-in.

回答1:


You use multiple build agents to support multiple build machines (I work currently with a build farm with 3 build machines - and thus 3 build agents - to distribute the load).

You also might want to have multiple build agents to be able to run builds in parallel. This is a nice feature to share resources, but a requirement when you start working with Test/Lab Management features.

With the capabilities: for example you can setup a build agent with version 1 of a 3rd party component, and a second build agent with version 2. With tagging you can specify in the build definition which build agent it will choose from out of the pool of build agents.




回答2:


We use 2 build agents on the same machine at work, since we only have one build machine.

The first one handles our CI builds, and is tag with CI. The build definition for the CI build is set up to only use agents that have the CI tag.

The second one is for manually queued builds, mostly for the release branch builds.

I specialized the CI build agent, because it was not uncommon when we were preparing a new build for QA to have several developers check into the development branch, which would slowing down being able to release the build to QA.




回答3:


One of our builds takes 9 minutes. Its nice that you don't have to be in the Queue behind it if you happen to deploy at the wrong time.



来源:https://stackoverflow.com/questions/4808887/why-and-when-to-have-multiple-build-agents

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!