你可以使用 CruiseControl 来构建 Cocoa/Objective-C 项目吗?
有人曾经设置过 Cruise Control 来构建 OS X Cocoa/Objective-C 项目吗?
如果是这样,是否有一种首选的 CruiseControl(CruiseControl.rb 或只是常规 CruiseControl)可以更轻松地执行此操作。
我目前有一个 Ruby rake 文件,其中包含用于构建和运行测试的步骤,并且希望在签入后自动执行此过程。
另外,CruiseControl 支持 git 吗? 我在网站上找不到任何与此相关的内容。
Has anyone ever set up Cruise Control to build an OS X Cocoa/Objective-C project?
If so, is there a preferred flavor of CruiseControl (CruiseControl.rb or just regular CruiseControl) that would be easier to do this with.
I currently have a Ruby rake file that has steps for doing building and running tests, and wanted to automate this process after doing a checkin.
Also, does CruiseControl have support for git? I couldn't find anything on the website for this.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的,您只需通过命令行 (xcodebuild) 运行 xcode 构建,这使得通过 ant
从 CC 定位变得简单。 我一直在使用普通的 CC,而不是 ruby 版本,它工作得很好。 这是一个简单的示例:有关 xcodebuild 的更多信息
这里似乎有一个标准的 git 对象 ,但我不使用 git,所以我不能告诉你更多!
Yes, you just run xcode builds via the command line (xcodebuild) which makes it simple to target from CC via an ant
<exec>
. I've been using just regular CC, not the ruby version and it works fine. Here's a barebones example:More info on xcodebuild
And there does appear to be a standard git object here, but I don't use git so I can't tell you much more than that!
是的,CruiseControl 支持 git。
Yes, CruiseControl has a support for git.