Reputation: 605
I am getting .xcarchive for my application when I am building using xcode bot and os x server. How can I get it to build .ipa?
Upvotes: 0
Views: 1129
Reputation: 944
In Xcode 7, you get a choice in the Bot configuration screen. Make sure to have the Create user-installable product
option checked, this should create an .ipa
from your archive automatically. (It actually creates an .ipa
for every device type now since the introduction of app slicing).
Upvotes: 2
Reputation: 334
When creating the scheme, check the Archive checkbox.
Product > Scheme > Edit Scheme...
Upvotes: -1
Reputation: 32066
When you build to OS X Server using bots, both an xcarchive
and an Ripa
are produced.
The "Product" button is a link to this ipa
.
Upvotes: 0