Apple Now Offering Developers Access to Xcode Cloud
Apple today began notifying developers that they're able to use the new Xcode Cloud service that was first introduced at the Worldwide Developers Conference in June.

"We're pleased to let you know your account has been enabled for Xcode Cloud beta," reads the email sent out to developers. "You can now take advantage of continuous integration and delivery service built into Xcode 13."
Xcode Cloud is a cloud-based Xcode service that allows developers to build, test, and deliver high-quality apps in the cloud rather than directly on a Mac.
Xcode Cloud is a new continuous integration and delivery cloud service designed specifically for Apple developers. Built into Xcode 13, Xcode Cloud offers a fast and simple way for developers and teams of all sizes to build, test, and deliver high-quality apps even more efficiently. Xcode Cloud can automatically build apps in the cloud to free up developers' Macs for other tasks. Parallel testing in the cloud means developers can test on a simulated version of every current Apple device, then easily deploy a build of the app for internal testing, or deliver to external beta testers through TestFlight for instant feedback.
Apple has been allowing developers to sign up for the Xcode Cloud waitlist prior to now, and there are multiple reports on Twitter from developers who have been granted beta access. All developers who are Account Holders in the Apple Developer Program as of June 7, 2021 are eligible to sign up for Xcode Cloud, though a Mac with the latest beta version of Xcode 13 is required.
Popular Stories
At WWDC 2022 last year, Apple previewed the next generation of CarPlay, promising deeper integration with vehicle functions like A/C and FM radio, support for multiple displays across the dashboard, personalization options, and more. Apple said the first vehicles with support for the next-generation CarPlay experience would be announced in late 2023, but it has still not shared any additional...
Apple plans to release an iOS 17 update to address a bug that may contribute to the reported iPhone 15 Pro and iPhone 15 Pro Max overheating issue, according to a statement the company shared today with MacRumors and Forbes reporter David Phelan. Apple also says some recent updates to third-party apps have overloaded the system and contributed to the overheating issue. The report notes that...
Significant changes are expected to arrive with Apple's fourth-generation iPhone SE, in terms of both design and hardware, MacRumors has learned. The iPhone SE 4, known internally under the codename Ghost, is expected to receive a new design derived almost entirely from the base model iPhone 14. According to our sources, the iPhone SE 4 will use a modified version of the iPhone 14 chassis...
If you have an iPhone 15 and drive a BMW, it might be best to avoid charging the device with the vehicle's wireless charging pad for now. Over the past week, some BMW owners have complained that their iPhone 15's NFC chip no longer works after charging the device with their vehicle's wireless charging pad, according to comments shared on the MacRumors Forums and X, formerly known as Twitter. ...
MacRumors has obtained preliminary information on the weights and dimensions planned for the iPhone 16, iPhone 16 Plus, iPhone 16 Pro, and iPhone 16 Pro Max. The information corroborates previous reports suggesting that the iPhone 16 Pro and 16 Pro Max will feature larger displays. iPhone 16 and 16 Plus Current information suggests that the iPhone 16 and 16 Plus will maintain the same...
CarPlay is not working as expected for some iPhone 15 users, an issue that is likely linked to the transition to USB-C. There are multiple complaints from MacRumors readers and Reddit users who are unable to get CarPlay to work with their new devices. Cable type and available port options are a common theme in the CarPlay reports, with many of the functionality problems linked to USB-A to...
Apple added a USB-C port to the iPhone 15 lineup this year, allowing it to work with USB-C cables, USB-C power banks, and more. It turns out that some USB-C battery packs are not working properly with Apple's iPhone 15, resulting in charging issues. As highlighted on Reddit and the MacRumors forums, not all existing USB-C power banks can be used with the iPhone 15 models, perhaps due to the...
Top Rated Comments
[LIST=1]
* For example, say I and a partner have created a calculator app.
* One of our app’s functions is to sum a series of integers. While writing the app, my partner and I have written a series of corresponding tests to make sure that our code works as expected.
* In our test code, we would run that function with different combinations of numbers to ensure that we get the expected result each time — for example, if we run it with the numbers 3, 6, and 9, we know that the sum of the numbers is 18, so the function should return 18. And if we run it again with the numbers in a different order, we should of course still get 18 from the function. Rinse and repeat with numerous different combinations of numbers. (This sounds like tedious and mundane stuff, and in most cases it is, but it’s best to thoroughly check that even the simplest and most mundane code works exactly as you expect.)
* My partner made a change to our number-summing function and requests to merge his changes into the app.
* Here’s the CI (continuous integration) part: When the request is submitted, it automatically builds the project and runs our tests using the new code to make sure that we are still getting the results we expect out of the number-summing function, and any other functions that use it. Xcode Cloud allows for running the tests on numerous devices and device configurations.
* Say the change makes some tests fail when numbers are provided in a different order. If tests start failing as a result of the change, the failing tests will be indicated so that the problem can be isolated and resolved, or the changes can simply be ignored until a fix is found (if ever).
* Once our tests are passing (or, not recommended, even if they aren’t), here’s the CD (continuous delivery) part: Using Xcode Cloud we can “deliver” it straight to TestFlight for beta testing on real-world devices and eventually to the App Store.
Basically, it helps developers by automatically running tests in different configurations (to see if that’s the cause of failures) at important parts of the development process, which in turn encourages them to test their code, test all of their code, test it well, and test it again and again, which leads to better apps. Comprehensive and well-written tests, and running them repeatedly, can catch a lot of bugs before one finds out the hard way through, say, a bad App Store review.
Well, no ****! It's fricking XCode...
Im my opinion, improved experience for developers would be possibility to run macOS on VM's legally on non-mac hosts, so more CI tools would be free to use. Xcode Cloud probably will be another subscription-based tool to squeeze money from devs and maybe even without real world service integrations (github/bitbucket/etc).