Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Xcode distributed build not working

Here is my test setting: 2 Computers (MacPro 8 cores, Mac mini 2 cores), same MacOSX version (10.6.5 10H574, i386), same Apple clang version 2.0, same Xcode version (Version 3.2.5)

it simply wont get started. When I cleaned all targets on the mac mini and started distributed build, no activity was seen on the mac pro. Under Xcode preferences -> distributed builds they see each other. No Firewall involved or similar. Network is gigabit ethernet... I even tried running with the same user and in 32 bit mode like many people are saying.

does anybody knows how to get it to work?

like image 316
Torsten B Avatar asked Dec 22 '10 10:12

Torsten B


People also ask

Why does my Xcode build keep failing?

A common cause of failing builds is that Xcode Cloud can't access the Package. resolved file that it needs to resolve your Swift Package dependencies. To resolve issues related to the Package.

How long does it take for build to appear in App Store Connect?

After uploading a build, iTunes Connect performs some processing to prepare it for TestFlight Distribution and App Store distribution. The status of the build should go to ready after some time. Sometimes, this happens as fast as 15 minutes after uploading but can sometimes take 1 hour or longer.

How can I upload app to Apple Store without Xcode?

Use Apple's Transporter to upload the . ipa to App Store Connect without Xcode.


1 Answers

You Bundle identifier and the Distribution profile bundle identifier should be same
Add armv6 and armv7 in Architectures and Valid Architectures under Targets. Build Active Architectures only to "NO" this should be done under Targets. Have you selceted the proper distribution profile in Targets?
Have you tried the following one ?
Product -> Build For -> Build For Archiving

You can find the distribution build in Organizer->Archives.

like image 132
muthukumar Avatar answered Oct 17 '22 23:10

muthukumar