-
Notifications
You must be signed in to change notification settings - Fork 56
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 CI #103
Fix CI #103
Conversation
.github/workflows/test.yml
Outdated
@@ -130,7 +131,8 @@ jobs: | |||
- aarch64-linux-android | |||
- arm-linux-androideabi | |||
- armv7-linux-androideabi | |||
- x86_64-linux-android | |||
# TODO: error: cannot find -lunwind | |||
# - x86_64-linux-android |
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'm not particularly keen on disabling the android target. It isn't some obscure target like the mips ones. It would be better to just fix it. Failing that, I would prefer to keep a reminder that this is broken.
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 am not sure that x86_64-linux-android
isn't some obscure target like the mips
.
Now we can build aarch64-linux-android
. Anyway, I need to look deeper into this issue.
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.
Done.
default: true | ||
- name: Install cross | ||
run: | | ||
cargo install cross --git https://github.com/cross-rs/cross |
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.
Why --git
? I guess they haven't produced any releases recently, is that why?
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've read it from README.
Anyway, I can remove it, if it needs.
Closes #102