Run Xcode Project in TeamCity

What they do install, installsrcand testwhile using the Project Xcode runner.enter image description here

When I create using clean build archive, I get only .app, not .ipa. Are there any command line options that should be added to the step. Please help me.

+4
source share
1 answer

The build action archivecreates the file .xcarchive. To create a file .ipa, you must add the next step to build the command line in teamcity with the following command:

xcodebuild -exportArchive -archivePath projectname.xcarchive -exportPath projectname -exportFormat ipa
+2
source

Source: https://habr.com/ru/post/1583992/


All Articles