Use 64 bits emulator to run android tests

Also install headless jre instead of the full jre.
This commit is contained in:
Marco A L Barbosa 2017-03-31 17:26:55 -03:00
parent 474f7a91ee
commit 113b3b46a7
2 changed files with 6 additions and 4 deletions

View File

@ -13,7 +13,7 @@ RUN dpkg --add-architecture i386 && \
cmake \
unzip \
expect \
openjdk-9-jre \
openjdk-9-jre-headless \
sudo \
libstdc++6:i386 \
xz-utils \

View File

@ -10,7 +10,9 @@
# except according to those terms.
set -ex
ANDROID_EMULATOR_FORCE_32BIT=true \
nohup nohup emulator @arm-18 -no-window -partition-size 2047 \
0<&- &>/dev/null &
# Setting SHELL to a file instead on a symlink helps android
# emulator identify the system
export SHELL=/bin/bash
nohup nohup emulator @arm-18 -no-window -partition-size 2047 0<&- &>/dev/null &
exec "$@"