You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Github actions continuous integration builds were failing
for Android targets because the specified `android.toolchain.cmake`
file was not available on the specified runner.
Github documents the runner images has having the lastest
stable NDK as well as the previous two LTS releases. We
were specifying 25.2.9519653, first released in 2022.
https://github.com/actions/runner-images/blob/releases/ubuntu24/20250629/README.md#software-and-image-support
Instead specify r27c, released in 2024 and still the
current LTS release.
https://developer.android.com/ndk/downloads/revision_history
Also move the version to a shared ENV variable for easier
updating.
Signed-off-by: Jean-Marc Valin <jmvalin@jmvalin.ca>
0 commit comments