I have an iOS project that uses a few CocoaPods that throw a lot of warnings when compiled.
In my Podfile I have the inhibit_all_warnings!
that prevent the warnings from showing up on Xcode build.
When I use Fastlane it throws the fatal error: too many errors emitted, stopping now [-ferror-limit=]
error.
This answer tells me that adding the -ferror-limit=0
argument make it ignore the warnings and continue compiling.
I tried adding xcargs: '-ferror-limit=0'
to the ipa action call in Fastfile, but it didn't work.
How can I make the Fastlane's ipa action to ignore the warnings and continue compiling?