Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix iOS CI/CD build breakage #6589

Merged
merged 1 commit into from
Nov 19, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions ios/Podfile
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,16 @@ target 'AllAboutOlaf' do
config.build_settings["CXX"] = "clang++"
config.build_settings["LDPLUSPLUS"] = "clang++"
end

# Workaround for cli builds failing on Xcode 14
# We should be able to remove this once CocoaPods catches up to it
# react-native issue: https://github.com/facebook/react-native/issues/34673
# cocoapods issue: https://github.com/CocoaPods/CocoaPods/issues/11402
if target.respond_to?(:product_type) and target.product_type == "com.apple.product-type.bundle"
target.build_configurations.each do |config|
config.build_settings['CODE_SIGNING_ALLOWED'] = 'NO'
end
end
end
end
end
2 changes: 1 addition & 1 deletion ios/Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -707,6 +707,6 @@ SPEC CHECKSUMS:
Yoga: 2f6a78c58dcc2963bd8e34d96a4246d9dff2e3a7
YogaKit: f782866e155069a2cca2517aafea43200b01fd5a

PODFILE CHECKSUM: beadf17ef4e816508151c3d09fd800f19958dddc
PODFILE CHECKSUM: 38ee0eeef55ab8c2665f634e3bb69c4ef965e110

COCOAPODS: 1.11.3