-
Notifications
You must be signed in to change notification settings - Fork 986
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
add support for Xcode 15 #17343
add support for Xcode 15 #17343
Conversation
Jenkins Builds
|
After upgrading to Xcode 15 make run-ios would fail with ``` ❌ /Users/siddarthkumar/code/status-im/PR/status-mobile/ios/Pods/boost/boost/container_hash/hash.hpp:131:33: no template named 'unary_function' in namespace 'std'; did you mean '__unary_function'? struct hash_base : std::unary_function<T, std::size_t> {}; ``` This commit fixes the issue and makes existing codebase compatible with newer Xcode. reference issue in react-native repo : facebook/react-native#37748
11dd8a3
to
3700068
Compare
Side effect of this approach is we now get ugly logs like this when running
However the end result is
So I guess the red Xs are safe to ignore for now. |
@@ -772,7 +772,7 @@ SPEC CHECKSUMS: | |||
RNLanguages: 962e562af0d34ab1958d89bcfdb64fafc37c513e | |||
RNPermissions: ad71dd4f767ec254f2cd57592fbee02afee75467 | |||
RNReactNativeHapticFeedback: 2566b468cc8d0e7bb2f84b23adc0f4614594d071 | |||
RNReanimated: d0db0ee059c33381bca787a2193c27e52750ccaf | |||
RNReanimated: b3b67ebe099c0b0e7b5c7386b18d2468e29c9d41 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
someone forgot to push this change?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I guess
i gave approve because i don't see anything wrong, but i haven't tested it |
81% of end-end tests have passed
Failed tests (8)Click to expandClass TestOneToOneChatMultipleSharedDevicesNewUi:
Class TestCommunityOneDeviceMerged:
Class TestCommunityMultipleDeviceMergedTwo:
Class TestGroupChatMultipleDeviceMergedNewUI:
Class TestOneToOneChatMultipleSharedDevicesNewUiTwo:
Class TestCommunityMultipleDeviceMerged:
Passed tests (35)Click to expandClass TestActivityMultipleDevicePRTwo:
Class TestOneToOneChatMultipleSharedDevicesNewUi:
Class TestCommunityOneDeviceMerged:
Class TestCommunityMultipleDeviceMergedTwo:
Class TestActivityMultipleDevicePR:
Class TestOneToOneChatMultipleSharedDevicesNewUiTwo:
Class TestGroupChatMultipleDeviceMergedNewUI:
Class TestCommunityMultipleDeviceMerged:
Class TestActivityCenterContactRequestMultipleDevicePR:
|
trying with xcode 14.3.1 |
Thanks @flexsurfer and @qfrank you read my mind. I was just now thinking about backward compatibility with Xcode 14.x :) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM, xcode 14.3.1 works as before, applogize for not brave enough to try xcode 15 but still thank you for your PR ❤️
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I just upgraded and tested it with Xcode 15 , all works fine. thanks :)
@status-im/mobile-qa : merged this without QA because we're only adding support to build the app with Xcode 15 and this has no impact on app functionalities. Also E2E was run just in case ;) |
A more accurate reason would be that Xcode changed cannot affect E2E tests since those are run on Android builds. |
After upgrading to Xcode 15 make run-ios would fail with ``` ❌ /Users/siddarthkumar/code/status-im/PR/status-mobile/ios/Pods/boost/boost/container_hash/hash.hpp:131:33: no template named 'unary_function' in namespace 'std'; did you mean '__unary_function'? struct hash_base : std::unary_function<T, std::size_t> {}; ``` This commit fixes the issue and makes existing codebase compatible with newer Xcode. reference issue in react-native repo : facebook/react-native#37748
After upgrading to Xcode 15
make run-ios
would fail withThis PR fixes the issue and makes existing codebase compatible with newer Xcode.
reference issue in react-native repo : facebook/react-native#37748
Platforms
status: ready