是否可以通过 Teamcity 中的 REST api(POST 方法)为现有项目创建新的构建配置?
如果有,如何创建?(一些指导方针)
谢谢
这在 8.x 上肯定是可能的,不需要关心早期版本。
这是一个非常简单的 python 片段,它将使用此作为指南将现有构建配置复制到给定项目中http://confluence.jetbrains.com/display/TCD8/REST+API#RESTAPI-BuildConfigurationAndTemplateSettings。
import requests
xml = """<newBuildTypeDescription name='NewBuildConfigName'
sourceBuildTypeLocator='ExistingBuildConfigNameThatYouWantToCopy'
copyAllAssociatedSettings='true' shareVCSRoots='false'/>
"""
headers = {'Content-Type': 'application/xml'} # set what your server accepts
print requests.post('http://YOURTEAMCITYWEBADDRESS:YOURTEAMCITYPORT/httpAuth/app/rest/projects/id:PROJECTIDWHERENEWBUILDCONFIGSHOULDBECREATED/buildTypes', data=xml, headers=headers, auth=('TeamCityUserName','TeamCityPassword')).text
现在可以在8.x REST中使用。您可以执行以下操作:
POST plain text (name) to http://teamcity:8111/httpAuth/app/rest/projects/<projectLocator>/buildTypes
以上是从8.x REST复制的。检查8.x REST以获取更多详细信息。
好吧,你可以参考这个作为初学者: