Skip to content

Commit 1d1b112

Browse files
committed
chore(tests): alter Podfile build overrides
- increase min deploy target for all pods, eliminates non-actionable warnings - stop overriding other warning settings, leave them as default - stop overriding build architectures, .xcframework ecosystem changes should make everything work
1 parent e7d7833 commit 1d1b112

File tree

1 file changed

+4
-7
lines changed

1 file changed

+4
-7
lines changed

tests/ios/Podfile

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -22,15 +22,12 @@ target 'testing' do
2222
end
2323

2424
post_install do |installer|
25+
26+
# We support a smaller range of deployment than some libraries, eliminate related noise
2527
installer.pods_project.targets.each do |target|
2628
target.build_configurations.each do |config|
27-
config.build_settings['GCC_WARN_INHIBIT_ALL_WARNINGS'] = "YES"
28-
config.build_settings['GCC_TREAT_WARNINGS_AS_ERRORS'] = "NO"
29-
config.build_settings['GCC_WARN_64_TO_32_BIT_CONVERSION'] = "NO"
30-
config.build_settings["ONLY_ACTIVE_ARCH"] = "YES"
29+
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '10.0'
3130
end
3231
end
33-
installer.pods_project.build_configurations.each do |config|
34-
config.build_settings["EXCLUDED_ARCHS[sdk=iphonesimulator*]"] = "i386 arm64"
35-
end
32+
3633
end

0 commit comments

Comments
 (0)