codemagic keep build with error: '.../Pods-Runner/Pods-Runner-frameworks-Release-input-files.xcfilelist' `

codemagic keep build with error: '.../Pods-Runner/Pods-Runner-frameworks-Release-input-files.xcfilelist' `

PS:我可以使用Xcode构建版本成功

我在使用codemagic时遇到了类似的错误。 .

进行上述link的更改后。

我在 codemagic 中遇到构建错误,但应该没有任何与构建错误相关的消息。

您可以尝试更新您的 pods 以匹配新版本或使用以下自定义脚本降级 pods:

#!/bin/sh

set -e    # exit on first failed command
set -x  # print all executed commands to the terminal
yes | gem uninstall cocoapods -v 1.7.2 || true
gem install cocoapods -v 1.6.1

显示更多日志的一个技巧是在构建部分输入 -v--verbose 以构建参数。