Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Command line compiling an iPhone Application

I would like to find a way to compile and package our iPhone application as part of our automated nightly build. At present we always have to manually kick off a build on a shared Mac that has the adhoc certificates installed on the box and then post the resulting test binaries some place where testers can pull them down and install them.

Has anyone found an approach to automation that works for them?

like image 910
ra9r Avatar asked Aug 31 '09 19:08

ra9r


2 Answers

There's a command line tool to build Xcode projects: xcodebuild

like image 171
Nikolai Ruhe Avatar answered Oct 10 '22 03:10

Nikolai Ruhe


Try using xcodebuild, it'll build an Xcode project from the command line. You can then pull the binaries out of the build directory.

like image 3
chimz Avatar answered Oct 10 '22 03:10

chimz