Thanks to the Xcode 15.3 update build flow is ruined again. Have to spent time fixing a new "improvement". Use Xcode 15.2 as a temporary fix.
Post
Replies
Boosts
Views
Activity
Same here, please fix this ASAP, it steels half of my working day!
Same here in 2023
I had exactly same problem. For me the issue lied in "ci_post_clone.sh" CocoaPods installation step. Cocoapods installation was done through bundler and worked fine for a long time.
...
gem install bundler --install-dir $GEM_HOME
bundle install
bundle exec pod install
...
For some reason this doesn't work for Xcode Cloud setup (Xcode 15RC + Mac OS 13.5.2), but worked well for Xcode Cloud setup (Xcode 14.3.1 + Mac OS 13.4.1).
The error says :
xcodebuild: error: Scheme [SchemeName] is not currently configured for the build action.
But also in the logs I found the following
An error occurred while installing json (2.6.3), and Bundler cannot continue.
So my Pods were not installed, that was the root cause of getting that error. So if you experience the same - double check that your Pods are installed successfully.