2013-12-17 55 views

回答

0

有一個Xcode插件:

https://wiki.jenkins-ci.org/display/JENKINS/Xcode+Plugin

也許這也有幫助:

http://programming.oreilly.com/2013/04/upward-mobility-automating-ios-builds-with-jenkins.html

但是,也許你正在使用的Xserver如果更好你試試做連續的整合:

https://developer.apple.com/library/ios/documentation/IDEs/Conceptual/xcode_guide-continuous_integration/200-Adopting_a_Continuous_Integration_Workflow/adopt_continuous_integration.html

1

你絕對可以使用Makefile文件來構建和運行兩個應用程序/庫和測試。

這裏是一個很好的指南生成文件:

http://mrbook.org/tutorials/make/ 

它應該幫助你寫一個簡單的makefile。有關更多信息,Google是您的朋友。

另一個很好的指導作用是在這裏:

http://www.cs.swarthmore.edu/~newhall/unixhelp/howto_makefiles.html 

記住,詹金斯和makefile文件是完全無關的。您可以使用jenkins和makefile,並使用沒有jenkins的makefile。一個是持續集成系統,另一個是構建軟件的另一種方式。

您可以按照其他文章中的建議繼續使用Xserver,但Jenkins具有許多其他系統不具備的優點:它可以使用大量插件進行擴展,擁有大量用戶和開發人員社區,並且可以使用針對多種語言的多種類型和風格的項目。雖然您的項目純粹是針對iOS的,但您可以從可用插件列表中利用Jenkins中的其他功能。

+1

(感謝無論誰投票失敗。一個原因爲什麼會很棒。) – Sagar