Bug 1718341 - Initialize XVFB during SDK packaging. r=glandium

Differential Revision: https://phabricator.services.mozilla.com/D119224
This commit is contained in:
Agi Sferro 2021-07-16 17:49:55 +00:00
Родитель 1e6db53a96
Коммит 7450f3801e
2 изменённых файлов: 14 добавлений и 0 удалений

Просмотреть файл

@ -31,6 +31,8 @@ RUN apt-get update && \
uuid \
valgrind \
vim \
x11-utils \
xvfb \
wget \
zip \
zstd

Просмотреть файл

@ -1,6 +1,18 @@
#!/bin/bash
set -x -e -v
# Initialize XVFB for the AVD
. /builds/worker/scripts/xvfb.sh
cleanup() {
local rv=$?
cleanup_xvfb
exit $rv
}
trap cleanup EXIT INT
start_xvfb '1024x768x24' 2
# This script is for fetching and repacking the Android SDK (for
# Linux), the tools required to produce Android packages.