diff options
| author | Matthew Maurer <mmaurer@google.com> | 2024-02-02 23:13:05 +0000 |
|---|---|---|
| committer | Matthew Maurer <mmaurer@google.com> | 2024-07-26 00:52:42 +0000 |
| commit | 8bf9aeaa80fcb9d30fa2dfab85f323d38ea9c6f2 (patch) | |
| tree | 0c4f8ae775a27cdd2bc1476b284da6d721037107 /src/ci/docker/scripts/android-start-emulator.sh | |
| parent | eb10639928a2781cf0a12440007fbcc1e3a6888f (diff) | |
| download | rust-8bf9aeaa80fcb9d30fa2dfab85f323d38ea9c6f2.tar.gz rust-8bf9aeaa80fcb9d30fa2dfab85f323d38ea9c6f2.zip | |
Update Android testing to API 21, matching NDK 26
We were running testing on API 18, which was already out of support for NDK 25, and some of the ancient behavior in that image was causing trouble when developing `rustc` features (#120326). Update to the current LTS NDK 26, and to its minimum supported API 21. Fixes: #120567
Diffstat (limited to 'src/ci/docker/scripts/android-start-emulator.sh')
| -rwxr-xr-x | src/ci/docker/scripts/android-start-emulator.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ci/docker/scripts/android-start-emulator.sh b/src/ci/docker/scripts/android-start-emulator.sh index 09f0d13759c..5ffb72eddb1 100755 --- a/src/ci/docker/scripts/android-start-emulator.sh +++ b/src/ci/docker/scripts/android-start-emulator.sh @@ -10,7 +10,7 @@ export SHELL=/bin/bash # the emulator date is set to unix epoch (in armeabi-v7a-18 image). Using # classic engine the emulator starts with the current date and the tests run # fine. If another image is used, this need to be evaluated again. -nohup nohup emulator @armeabi-v7a-18 \ +nohup nohup emulator @armeabi-v7a-21 \ -engine classic -no-window -partition-size 2047 0<&- &>/dev/null & exec "$@" |
