Если вы все знаете что -нибудь об этих ошибках ниже вашей помощи, будет очень ценится. Если вам нужна дополнительная информация об этом, не стесняйтесь комментировать. Я довольно потерян в этот момент. Я архивировал свое приложение Flutter с помощью xcode Cloud и получаю эти четыре ошибки (кстати, он архивирует и обычно строит на моей собственной машине): < /p>
Unable to load contents of file list: '/Target Support Files/Pods-Runner/Pods-Runner-frameworks-Release-input-files.xcfilelist'< /code> < /li>
< /ul>
Я также получаю эти два предупреждения (idk, если они связаны): < /p>
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.
#!/bin/sh
# The default execution directory of this script is the ci_scripts directory.
cd $CI_WORKSPACE # change working directory to the root of your cloned 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 Flutter artifacts for iOS (--ios), or macOS (--macos) platforms.
flutter precache --ios
# Install Flutter dependencies.
flutter pub get
flutter build ios
# Install CocoaPods using Homebrew.
HOMEBREW_NO_AUTO_UPDATE=1 # disable homebrew's automatic updates.
brew install cocoapods
# Install CocoaPods dependencies.
cd ios
pod install # run `pod install` in the `ios` directory.
exit 0
Я попытался внести изменения в сценарий пост-клона и сам проект, но до сих пор ничего не сработало.
Если вы все знаете что -нибудь об этих ошибках ниже вашей помощи, будет очень ценится. Если вам нужна дополнительная информация об этом, не стесняйтесь комментировать. Я довольно потерян в этот момент. Я архивировал свое приложение Flutter с помощью xcode Cloud и получаю эти четыре ошибки (кстати, он архивирует и обычно строит на моей собственной машине): < /p> [list] [*][code]could not find included file 'Pods/Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig' in search paths[/code] [*][code]could not find included file 'Generated.xcconfig' in search paths[/code] [*][code]Unable to load contents of file list: '/Target Support Files/Pods-Runner/Pods-Runner-frameworks-Release-output-files.xcfilelist'[/code] [*][code]Unable to load contents of file list: '/Target Support Files/Pods-Runner/Pods-Runner-frameworks-Release-input-files.xcfilelist'< /code> < /li> < /ul> Я также получаю эти два предупреждения (idk, если они связаны): < /p>
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.[/code]
[*] [code]Unable to read contents of XCFileList '/Target Support Files/Pods-Runner/Pods-Runner-frameworks-Release-output-files.xcfilelist'[/code]
[/list] Я использую рабочий процесс по умолчанию для xcode Cloud и использую следующее в качестве сценария Post Clone: [code]#!/bin/sh
# The default execution directory of this script is the ci_scripts directory. cd $CI_WORKSPACE # change working directory to the root of your cloned repo.