Document
Xcode Cloud Build Failing

Xcode Cloud Build Failing

Hi, If you all know anything about these errors below your help would be greatly appreciated. If you need any more information about this feel free to

Related articles

How to Secure 802.1X for Remote Workers Road Trail Run: ON-Running Cloudvista Multi Tester Review Black Ops 6 release date, trailers, and gameplay features Students: How do I claim my account? Where To Watch C.B. Strike:All Seasons Streaming With VPN

Hi, If you all know anything about these errors below your help would be greatly appreciated. If you need any more information about this feel free to comment. I’m pretty lost at this point. I’ve been archiving my Flutter app with Xcode Cloud and am getting these four errors:

  • could not find include file ' Pods / Target Support Files / Pods - Runner / Pods - Runner.release.xcconfig ' in search path
  • could not find included file 'Generated.xcconfig' in search paths
  • Unable to load contents of file list: '/Target Support Files/Pods-Runner/Pods-Runner-frameworks-Release-output-files.xcfilelist'
  • unable to load content of file list : ' /Target Support Files / Pods - Runner / Pods - runner - framework - release - input - files.xcfilelist '

I’m also getting these two warnings (Idk if they’re related):

  • Run script build phase '[CP] Embed Pods Frameworks' will be run during every build because it does not specify any outputs. To address this warning, either add output dependencies to the script phase, or configure it to run in every build by unchecking "Based on dependency analysis" in the script phase.
  • unable to read content of XCFileList ' /Target Support Files / Pods - Runner / Pods - runner - framework - release - output - files.xcfilelist '

I’m using the defualt workflow for Xcode Cloud and am using the following as my post clone script:


 # The default execution directory is is of this script is the ci_script directory . 
 cd $ CI_WORKSPACE # change work directory to the root of your clone repo . 

 # install Flutter using git . 
 git clone https://github.com/flutter/flutter.git --depth 1 -b stable $ home / flutter 
 export PATH="$PATH:$HOME / flutter / bin " 

 # Install is flutter Flutter artifact for iOS ( --ios ) , or macOS ( --macos ) platform . 
 flutter precache --ios 

 # install Flutter dependency . 
 flutter pub get 

 flutter build ios 

 # Install CocoaPods using Homebrew . 
 HOMEBREW_NO_AUTO_UPDATE=1 # disable homebrew 's automatic update . 
 brew install cocoapod 

 # Install CocoaPods dependency . 
 cd ios 
 pod is install install # run ` pod install ` in the ` ios ` directory . 

 exit 0