summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristophe Lyon <christophe.lyon@linaro.org>2017-03-21 17:00:10 +0000
committerChristophe Lyon <christophe.lyon@linaro.org>2017-03-21 17:00:10 +0000
commit275bb1c2d7d57a8ed2e7d62bbcd6406807c4e265 (patch)
treeb44a54edc52e0985b5fb30da1615fb2658150435
parent7f4c08737c3fa41b6992546e534d5606bd31959a (diff)
start-container-docker.sh: Cope with new image name.
Change-Id: Idc6d3498d41d19c68ccc6ca089622d66f1333978
-rwxr-xr-xstart-container-docker.sh9
1 files changed, 1 insertions, 8 deletions
diff --git a/start-container-docker.sh b/start-container-docker.sh
index fd05b224..8d26cffb 100755
--- a/start-container-docker.sh
+++ b/start-container-docker.sh
@@ -104,14 +104,7 @@ if [ "x$WORKSPACE" = "x" ]; then
exit 1
fi
-case "${distro}:${task}" in
- "trusty":"build")
- image=linaro/ci-${container_arch}-tcwg-ubuntu:${distro}
- ;;
- *)
- image=linaro/ci-${container_arch}-tcwg-${task}-ubuntu:${distro}
- ;;
-esac
+image=linaro/ci-${container_arch}-tcwg-${task}-ubuntu:${distro}
DOCKER="docker -H $session_host:2375"
$DOCKER pull $image