请任何人都可以解释一下这第四个选项是如何工作的?它是否适用于每次提交的即时集成.
请检查以下链接:
http://www.likelyanswer.com/30202671/How-Do-I-Create-A-Trigger-Script-For-Bot-On-Xcode-5-Ci%3F
这里是] 1
解决方法
当选择触发器脚本计划选项时,Xcode服务公开HTTP端点以执行立即集成:
POST /xcs/kick-commit-bots
Parameters:
repository: URL to the repository as shown in the bot’s settings.
branch: (optional) Name of the branch to trigger integrations for. If specified,only bots configured to build this branch will be integrated. If unspecified,all bots for the specified repository will be integrated.
例:
curl http://server.local/xcs/kick-commit-bots \ -d repository=ssh://server.local/git/example.git \ -d branch=master
要使用触发器脚本调度选项,您需要创建一个存储库挂钩,以在收到新提交时触发此端点. OS X Server在/Applications/Server.app/Contents/ServerRoot/usr/share/collabd/server/ruby/kick_build_bot.rb中包含示例挂钩.对于通过Xcode服务创建的托管Git存储库,将自动为您创建使用此脚本的post-receive挂钩.
请注意,发送到/ xcs / kick-commit-bots的存储库URL必须与存储库URL匹配,如Web界面中bot的设置中所示.似乎对于托管存储库,URL可以更改 – 有时使用ssh:URL,有时使用文件:URL.