Reputation: 2394
I'd like to be able to do automatic builds of latest code for my iOS project. Any way to do so on a server side on a linux server, for example?
Upvotes: 0
Views: 763
Reputation: 319
You could use Jenkins http://jenkins-ci.org/. We use it at work to build projects once someone has committed something to SVN. It's really handy. There are also a bunch of plugins you could use.
Upvotes: 0
Reputation: 14633
The only supported workflow requires OSX, but if you'd rather spend effort than money, some alternatives exist: Starting iPhone app development in Linux?
Upvotes: 0
Reputation: 5298
You must use an OS X-based machine to compile an iOS project. This can be automated using the command-line Xcode tools (xcodebuild in particular).
Upvotes: 3