skia2/infra/skqp/docker
Hal Canary 1de48d8040 infra/skqp/docker/README.md: whitespace changes for readability
No-Try: true
Change-Id: I34410ebbb924bbcad12e776fc725401482158b77
Reviewed-on: https://skia-review.googlesource.com/c/165308
Auto-Submit: Hal Canary <halcanary@google.com>
Reviewed-by: Kevin Lubick <kjlubick@google.com>
Commit-Queue: Kevin Lubick <kjlubick@google.com>
2018-10-29 10:46:56 +00:00
..
android-skqp Add Build and Test jobs for SKQP using docker. 2018-10-08 19:17:25 +00:00
README.md infra/skqp/docker/README.md: whitespace changes for readability 2018-10-29 10:46:56 +00:00

Docker

Docker files to ease working with the Android SDK/NDK and SKQP.

android-skqp

This image has an Android emulator, the Android SDK and NDK installed on it. Additionally, it has the dependencies needed to build SKQP - Clang, python, ninja.

It gets manually pushed anytime there's an update to the Dockerfile or relevant installed libraries.

docker build -t android-skqp ./android-skqp/
ANDROID_SDK_VERSION="8.1_v1" # use v2, v3 for respins
docker tag android-skqp gcr.io/skia-public/android-skqp:$ANDROID_SDK_VERSION
docker push gcr.io/skia-public/android-skqp:$ANDROID_SDK_VERSION

For testing the image locally, the following flow can be helpful:

docker build -t android-skqp ./android-skqp/

# start an emulator
docker run --privileged -d --name android_em \
    -e DEVICE="Samsung Galaxy S6" \
    -v $SKIA_ROOT:/SRC \
    -v $SKIA_ROOT/out/skqp:/OUT \
    android-skqp

# attach to that emulator
docker exec -it android_em /bin/bash

# Compile SKQP
docker run -it --rm -w /SRC/infra/skqp \
    -v $SKIA_ROOT:/SRC \
    android-skqp ./build_apk.sh

# Run SKQP (can't mount anything with -v here, must do it on
# original docker run)
docker exec -it android_em /SRC/infra/skqp/run_skqp.sh

# Cleanup
docker kill android_em
docker rm android_em