1

根据 TeamCity 文档,我可以看到可以通过 http 触发构建:

http://confluence.jetbrains.com/display/TCD7/Accessing+Server+by+HTTP

例如,

http://testuser:testpassword@teamcity.jetbrains.com/httpAuth/action.html?add2Queue=bt10

但是,我需要强制构建在添加到队列时也重建某些依赖项。这可能吗?

4

1 回答 1

2

如果将rebuildDependencies=true 添加到查询字符串,则可以强制TeamCity 重建所有依赖项:

http://testuser:testpassword@teamcity.jetbrains.com/httpAuth/action.html?add2Queue=bt10&rebuildDependencies=true

也可以部分重建依赖关系,但这并不容易,因为您需要以某种方式检索一些内部 id,但这些 id 通常不会显示在页面上的任何位置。

于 2013-02-04T19:06:37.050 回答