blob: 32b6c02323150e19969d7173958f27b53e8649cc [file] [log] [blame]
aminasyanb0451952019-10-23 14:44:46 +04001#!/bin/bash
2
3#Clone Horizon for running tests
4
5set -ex
6
7GERRIT_SCHEME=${GERRIT_SCHEME:-$(git remote -v | sed -n -e 's|^origin[[:space:]]\+\([[:alpha:]]\+\)://\([a-z0-9\-]\+\)@\([a-z.:0-9]\+\)/.*(fetch)$|\1|p')}
8GERRIT_NAME=${GERRIT_NAME:-$(git remote -v | sed -n -e 's|^origin[[:space:]]\+\([[:alpha:]]\+\)://\([a-z0-9\-]\+\)@\([a-z.:0-9]\+\)/.*(fetch)$|\2|p')}
9GERRIT_HOST_PORT=${GERRIT_HOST_PORT:-$(git remote -v | sed -n -e 's|^origin[[:space:]]\+\([[:alpha:]]\+\)://\([a-z0-9\-]\+\)@\([a-z.:0-9]\+\)/.*(fetch)$|\3|p')}
10HORIZON_LIB_REPO="${GERRIT_SCHEME}://${GERRIT_NAME}@${GERRIT_HOST_PORT}/packaging/sources/horizon"
11GERRIT_BRANCH=${GERRIT_BRANCH:-mcp/stein}
12
13git clone ${HORIZON_LIB_REPO}
14cd horizon/ ; git checkout ${GERRIT_BRANCH}