nuway
nuway

Reputation: 2394

how can I compile iOS project on a server

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

Answers (3)

Gwynant Jones
Gwynant Jones

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

Yusuf X
Yusuf X

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

pixel
pixel

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

Related Questions