7103cca7e2
No-Try: true Change-Id: I584d21220a0d7bf624373d0eb4a9eeb83ef23d00 Reviewed-on: https://skia-review.googlesource.com/c/174311 Reviewed-by: Hal Canary <halcanary@google.com> Commit-Queue: Hal Canary <halcanary@google.com>
29 lines
886 B
Bash
Executable File
29 lines
886 B
Bash
Executable File
#!/bin/sh
|
|
# Copyright 2018 Google LLC.
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
# found in the LICENSE file.
|
|
|
|
# Note: you may need to run as root for docker permissions.
|
|
|
|
OUT="$(mktemp -d "${TMPDIR:-/tmp}/skqp_apk.XXXXXXXXXX")"
|
|
BUILD="$(mktemp -d "${TMPDIR:-/tmp}/skqp_apk_build.XXXXXXXXXX")"
|
|
SKIA_ROOT="$(cd "$(dirname "$0")/../.."; pwd)"
|
|
|
|
cd "${SKIA_ROOT}/infra/skqp/docker"
|
|
|
|
docker build -t android-skqp ./android-skqp/
|
|
docker run --rm --privileged -d --name android_em \
|
|
--env=DEVICE="Samsung Galaxy S6" \
|
|
--volume="$SKIA_ROOT":/SRC \
|
|
--volume="$OUT":/OUT \
|
|
--volume="$BUILD":/BUILD \
|
|
android-skqp
|
|
docker exec \
|
|
--env=SKQP_OUTPUT_DIR=/OUT \
|
|
--env=SKQP_BUILD_DIR=/BUILD \
|
|
android_em /SRC/tools/skqp/make_universal_apk.py
|
|
docker kill android_em
|
|
rm -r "$BUILD"
|
|
chmod -R 0777 "$OUT"
|
|
ls -l "$OUT"/*.apk
|