使用Rest API

时间:2016-07-27 08:25:16

标签: teamcity teamcity-8.0

我以前使用Jenkins进行CI,可以通过REST api触发工作。

我目前正在使用TeamCity 8并希望尝试做同样的事情......

我可以使用

找到我想要的构建配置

http://teamcity.url/httpAuth/app/rest/buildTypes/id:MyInterestingJob

是否可以运行Build配置?

1 个答案:

答案 0 :(得分:2)

是的,但仅限于8.1及更高版本

您需要以构建节点作为内容向http://teamcity.url/httpAuth/app/rest/buildQueue端点发送POST。

e.g。发布此XML

<build>
    <buildType id="MyInterestingJob"/>
</build>

希望这有帮助