#!/bin/bash # Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root. set -e if [ $# -ne 1 ]; then echo "Usage: $0 " exit 1 fi DIR=$(cd $(dirname "${BASH_SOURCE[0]}") && pwd) cd $DIR GIT_COMMIT=$1 BUILD_DOCKER_IMAGE="vespabuild" CI_DOCKER_IMAGE="vespaci" docker build -t "$BUILD_DOCKER_IMAGE" -f Dockerfile.build . docker build -t "$CI_DOCKER_IMAGE" -f Dockerfile.ci . docker run --rm -v $(pwd)/..:/vespa --entrypoint /vespa-ci-internal.sh "$CI_DOCKER_IMAGE" "$GIT_COMMIT"