How to build a project in teamcity after multiple other builds have finished and not trigger the dependency chain?

流过昼夜 提交于 2019-12-06 11:28:12

In order to achieve your goal, you need to:

  1. Remove the finish build triggers
  2. Ensure that that there's a snapshot dependency from B => A and from C => A
  3. Add a new build (D) that has a snapshot dependency on B and C. This will be the build to trigger when you want A, B and C to run

Triggering C will only cause A and C to run and triggering B will only cause A and B to run.

If you need help configuring this then let me know

Hope this helps

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