-
Notifications
You must be signed in to change notification settings - Fork 2
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: unbreak iOS CI build and enable x86 Android targets #14
Conversation
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.
Thanks a lot for following through on this!
@@ -33,6 +33,9 @@ jobs: | |||
|
|||
- name: Generate | |||
run: | | |||
# Disabling NEON fixes linker error, see | |||
# https://github.com/unomed-dev/react-native-matrix-sdk/issues/12 | |||
export CARGO_FEATURE_NO_NEON=1 |
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.
This comment made me think that we should probably force the reldbg profile during building instead. However, uniffi-bindgen-react-native only supports release and debug right now. So I think this is fine for now.
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.
Have logged jhugman/uniffi-bindgen-react-native#190 upstream to allow specifying the profile in future.
Thanks again! |
This should fix #12 and adds a x86 build for Android.