From 60f35c279345cf6d82d350b538fe95fbc3267894 Mon Sep 17 00:00:00 2001 From: Kyle Manna Date: Mon, 2 Mar 2015 14:45:30 -0800 Subject: [PATCH] kitkat: Pull kitkat Docker tag * Pull the correct docker tag --- tests/build-kitkat.sh | 1 + tests/sync-kitkat.sh | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/build-kitkat.sh b/tests/build-kitkat.sh index 8367259..7bc69c0 100755 --- a/tests/build-kitkat.sh +++ b/tests/build-kitkat.sh @@ -28,6 +28,7 @@ else aosp_url="https://raw.githubusercontent.com/kylemanna/docker-aosp/master/utils/aosp" args="run.sh docker" export AOSP_EXTRA_ARGS="-v $(cd $(dirname $0) && pwd -P)/$(basename $0):/usr/local/bin/run.sh:ro" + export AOSP_IMAGE="kylemanna/aosp:4.4-kitkat" # # Try to invoke the aosp wrapper with the following priority: diff --git a/tests/sync-kitkat.sh b/tests/sync-kitkat.sh index a8e5036..3ac9d71 100755 --- a/tests/sync-kitkat.sh +++ b/tests/sync-kitkat.sh @@ -25,7 +25,7 @@ else args="run.sh docker" export AOSP_EXTRA_ARGS="-v $(cd $(dirname $0) && pwd -P)/$(basename $0):/usr/local/bin/run.sh:ro" export AOSP_VOL=/vol1 - export AOSP_IMAGE=aosp + export AOSP_IMAGE="kylemanna/aosp:4.4-kitkat" [ -n "$TEST_URL" ] && AOSP_EXTRA_ARGS+=" -e TEST_URL=$TEST_URL" [ -n "$TEST_BRANCH" ] && AOSP_EXTRA_ARGS+=" -e TEST_BRANCH=$TEST_BRANCHcY"