We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
My CI fails on the following targets after Rust 1.68 released.
CI log Workflow file
I don't know how to fix it.
aarch64-linux-android, i686-linux-android, x86_64-linux-android
cross v0.2.5
No response
The text was updated successfully, but these errors were encountered:
with 1.68, rust updated the minimal ndk. See https://blog.rust-lang.org/2023/01/09/android-ndk-update-r25.html
The current images for 0.2 use r21d, the images from main use r25b as of #1023
r21d
main
r25b
To fix this, but still using cross 0.2.5, please specify the image the android builds are using as
cross 0.2.5
# Cross.toml -> https://github.com/cross-rs/cross/wiki/Configuration#config-file [target.aarch64-linux-android] image = "ghcr.io/cross-rs/aarch64-linux-android:main" [target.i686-linux-android] image = "ghcr.io/cross-rs/i686-linux-android:main" [target.x86_64-linux-android] image = "ghcr.io/cross-rs/x86_64-linux-android:main"
or use a environment variable
CROSS_TARGET_AARCH64_LINUX_ANDROID_IMAGE="ghcr.io/cross-rs/aarch64-linux-android:main" CROSS_TARGET_I686_LINUX_ANDROID_IMAGE="ghcr.io/cross-rs/i686-linux-android:main" CROSS_TARGET_X86_64_LINUX_ANDROID_IMAGE="ghcr.io/cross-rs/x86_64-linux-android:main"
or simply use cross installed from main (we do not provide a compiled binary for that though)
Sorry, something went wrong.
No branches or pull requests
Checklist
Describe your issue
My CI fails on the following targets after Rust 1.68 released.
CI log
Workflow file
I don't know how to fix it.
What target(s) are you cross-compiling for?
aarch64-linux-android, i686-linux-android, x86_64-linux-android
Which operating system is the host (e.g computer cross is on) running?
What architecture is the host?
What container engine is cross using?
cross version
cross v0.2.5
Example
No response
Additional information / notes
No response
The text was updated successfully, but these errors were encountered: