我以前使用Jenkins进行CI,可以通过REST api触发工作。
我目前正在使用TeamCity 8并希望尝试做同样的事情......
我可以使用
找到我想要的构建配置 http://teamcity.url/httpAuth/app/rest/buildTypes/id:MyInterestingJob
是否可以运行Build配置?
答案 0 :(得分:2)
是的,但仅限于8.1及更高版本
您需要以构建节点作为内容向http://teamcity.url/httpAuth/app/rest/buildQueue端点发送POST。
e.g。发布此XML
<build>
<buildType id="MyInterestingJob"/>
</build>
希望这有帮助