summaryrefslogtreecommitdiffstats
path: root/docker/vespa-ci.sh
blob: 2e48b737ff753d0fd4c4b3cd24fc9f536a90dd4f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#!/bin/bash
# Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
set -e
set -x

if [ $# -ne 1 ]; then
  echo "Usage: $0 <git commit>"
  exit 1
fi

RELATIVE_DIR=$(dirname "${BASH_SOURCE[0]}")
DIR=$(cd "${RELATIVE_DIR}" && pwd)
cd "${DIR}"

GIT_COMMIT=$1
DOCKER_IMAGE="vespaengine/vespa-dev:latest"
INTERNAL_DIR=/vespa

mkdir -p logs

docker run --rm -v ${DIR}/..:${INTERNAL_DIR} --entrypoint "${INTERNAL_DIR}/docker/ci/vespa-ci-internal.sh" "$DOCKER_IMAGE" "$GIT_COMMIT" \
   2>&1 | tee logs/vespa-ci-$(date +%Y-%m-%dT%H:%M:%S).log

# Needed because of piping docker run to tee above
exit ${PIPESTATUS[0]}