使用 Fastlane 时如何设置 `-ferror-limit`

How to set the `-ferror-limit` when using Fastlane

我有一个 iOS 项目,它使用了一些 CocoaPods,这些 CocoaPods 在编译时会抛出很多警告。

在我的 Podfile 中,我有 inhibit_all_warnings! 防止警告出现在 Xcode build 上。

当我使用 Fastlane 时,它​​会抛出 fatal error: too many errors emitted, stopping now [-ferror-limit=] 错误。

This 答案告诉我添加 -ferror-limit=0 参数会使其忽略警告并继续编译。

我尝试将 xcargs: '-ferror-limit=0' 添加到 Fastfile 中的 ipa 操作调用,但没有成功。

如何使 Fastlane 的 ipa 操作忽略警告并继续编译?

由于 fastlane 从 shenzhen 更改为 gym,此参数似乎不再需要。