Add Gitea Actions workflow for automated builds
Some checks failed
Build Android Emulator Images / build (android-30) (push) Failing after 5s
Some checks failed
Build Android Emulator Images / build (android-30) (push) Failing after 5s
This commit is contained in:
72
templates/start.sh.old
Normal file
72
templates/start.sh.old
Normal file
@@ -0,0 +1,72 @@
|
||||
#!/usr/bin/env bash
|
||||
console_port=$CONSOLE_PORT
|
||||
adb_port=$ADB_PORT
|
||||
adb_server_port=$ADB_SERVER_PORT
|
||||
emulator_opts=$EMULATOR_OPTS
|
||||
|
||||
if [ -z "$console_port" ]
|
||||
then
|
||||
console_port="5554"
|
||||
fi
|
||||
if [ -z "$adb_port" ]
|
||||
then
|
||||
adb_port="5555"
|
||||
fi
|
||||
if [ -z "$adb_server_port" ]
|
||||
then
|
||||
adb_server_port="5037"
|
||||
fi
|
||||
if [ -z "$emulator_opts" ]
|
||||
then
|
||||
emulator_opts="-screen multi-touch -no-boot-anim -noaudio -nojni -netfast -verbose -camera-back none -camera-front none -skip-adb-auth -snapshot default -no-snapshot-save"
|
||||
fi
|
||||
|
||||
# Detect ip and forward ADB ports outside to outside interface
|
||||
ip=$(ip addr list eth0|grep "inet "|cut -d' ' -f6|cut -d/ -f1)
|
||||
redir --laddr=$ip --lport=$adb_server_port --caddr=127.0.0.1 --cport=$adb_server_port &
|
||||
redir --laddr=$ip --lport=$console_port --caddr=127.0.0.1 --cport=$console_port &
|
||||
redir --laddr=$ip --lport=$adb_port --caddr=127.0.0.1 --cport=$adb_port &
|
||||
|
||||
function clean_up {
|
||||
echo "Cleaning up"
|
||||
rm /tmp/.X1-lock
|
||||
|
||||
kill $XVFB_PID
|
||||
kill $FLUXBOX_PID
|
||||
kill $VNC_PID
|
||||
exit
|
||||
}
|
||||
|
||||
trap clean_up SIGHUP SIGINT SIGTERM
|
||||
export DISPLAY=:1
|
||||
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/opt/android-sdk-linux/emulator/lib64/qt/lib:/opt/android-sdk-linux/emulator/lib64/libstdc++:/opt/android-sdk-linux/emulator/lib64:/opt/android-sdk-linux/emulator/lib64/gles_swiftshader
|
||||
Xvfb :1 +extension GLX +extension RANDR +extension RENDER +extension XFIXES -screen 0 1024x768x24 &
|
||||
XVFB_PID=$!
|
||||
sleep 1 && fluxbox -display ":1.0" &
|
||||
FLUXBOX_PID=$!
|
||||
sleep 2 && x11vnc -display :1 -nopw -forever &
|
||||
VNC_PID=$!
|
||||
|
||||
# Set up and run emulator
|
||||
# qemu references bios by relative path
|
||||
cd /opt/android-sdk-linux/emulator
|
||||
|
||||
CONFIG="/root/.android/avd/x86.avd/config.ini"
|
||||
CONFIGTMP=${CONFIG}.tmp
|
||||
|
||||
if [ -n "$ANDROID_CONFIG" ];
|
||||
then
|
||||
IFS=';' read -ra OPTS <<< "$ANDROID_CONFIG"
|
||||
for OPT in "${OPTS[@]}"; do
|
||||
IFS='=' read -ra KV <<< "$OPT"
|
||||
KEY=${KV[0]}
|
||||
VALUE=${KV[1]}
|
||||
mv ${CONFIG} ${CONFIGTMP}
|
||||
cat ${CONFIGTMP} | grep -v ${KEY}= > ${CONFIG}
|
||||
echo ${OPT} >> ${CONFIG}
|
||||
done
|
||||
fi
|
||||
|
||||
echo "emulator_opts: $emulator_opts"
|
||||
|
||||
LIBGL_DEBUG=verbose ./qemu/linux-x86_64/qemu-system-x86_64 -avd x86 -ports $console_port,$adb_port $emulator_opts -qemu $QEMU_OPTS
|
||||
Reference in New Issue
Block a user