Nevin Raj Victor
Nevin Raj Victor

Reputation: 2984

Xcode Project runner in TeamCity

What does the install ,installsrc and testdo while using the Xcode Project runner.enter image description here

When I build using clean build archive I am getting only the .app and not .ipa .Are there any command line parameters that is to be added to the step.Please help me out.

Upvotes: 4

Views: 1011

Answers (1)

ngu
ngu

Reputation: 894

The archive build action generates a .xcarchive file. To create an .ipa file you have to add a subsequent command line build step in teamcity with the following command:

xcodebuild -exportArchive -archivePath projectname.xcarchive -exportPath projectname -exportFormat ipa

Upvotes: 2

Related Questions