We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 5309a3e + 113b3b4 commit 263a9fcCopy full SHA for 263a9fc
src/ci/docker/arm-android/Dockerfile
@@ -13,7 +13,7 @@ RUN dpkg --add-architecture i386 && \
13
cmake \
14
unzip \
15
expect \
16
- openjdk-9-jre \
+ openjdk-9-jre-headless \
17
sudo \
18
libstdc++6:i386 \
19
xz-utils \
src/ci/docker/arm-android/start-emulator.sh
@@ -10,7 +10,9 @@
10
# except according to those terms.
11
12
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 "$@"
0 commit comments