Post

Replies

Boosts

Views

Activity

Reply to Scheme is not currently configured for the build action.
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.
Sep ’23