4

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.

Nevin Raj Victor
  • 2,924
  • 3
  • 23
  • 37

1 Answers1

2

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
ngu
  • 874
  • 1
  • 9
  • 23