1
0
mirror of https://github.com/avatao-content/test-tutorial-framework synced 2025-04-03 10:12:41 +00:00

Improve BASEIMAGE_ONLY flow

This commit is contained in:
Kristóf Tóth 2018-06-08 11:40:22 +02:00
parent 5ea5f52630
commit 81a930470a

View File

@ -10,11 +10,14 @@ popd() { command popd "$@" > /dev/null; }
TFWDEV="${TFWDEV:-0}" TFWDEV="${TFWDEV:-0}"
HTTPS_REMOTES="${HTTPS_REMOTES:-}" HTTPS_REMOTES="${HTTPS_REMOTES:-}"
TFW_POSTFIX=tutorial-framework TFW_POSTFIX=tutorial-framework
BASEDIR="$(pwd)" BASEDIR="$(pwd)"
BASEIMAGE=baseimage-${TFW_POSTFIX} BASEIMAGE=baseimage-${TFW_POSTFIX}
TEST=test-${TFW_POSTFIX} TEST=test-${TFW_POSTFIX}
FRONTEND=frontend-${TFW_POSTFIX} FRONTEND=frontend-${TFW_POSTFIX}
BASEIMAGE_NAME="${BASEIMAGE_NAME:-eu.gcr.io/avatao-challengestore/tutorial-framework}"
LOGFILE=/tmp/bootstrap_tfw.log LOGFILE=/tmp/bootstrap_tfw.log
remotebase="git@github.com:" remotebase="git@github.com:"
@ -28,10 +31,10 @@ run()
check_dependencies check_dependencies
clone_repos_ask_ssh_or_https clone_repos_ask_ssh_or_https
TAG="${BASEIMAGE_ONLY:-$(fetch_latest_tag)}" TAG="${BASEIMAGE_ONLY:-$(fetch_latest_tag)}"
TAG=$TAG pin_latest_baseimage
TAG=$TAG build_latest_baseimage TAG=$TAG build_latest_baseimage
if [ -z "${BASEIMAGE_ONLY:-}" ]; then if [ -z "${BASEIMAGE_ONLY:-}" ]; then
TAG=$TAG pin_latest_baseimage
install_frontend_deps install_frontend_deps
if [ "$TFWDEV" == "0" ]; then if [ "$TFWDEV" == "0" ]; then
cleanup_repos cleanup_repos
@ -41,8 +44,12 @@ run()
delete_repos delete_repos
fi fi
echo if [ -z "${BASEIMAGE_ONLY:-}" ]; then
echo "You can build & start TFW by executing the command: ${TEST}/hack/tfw.sh start" echo
echo "You can build & start TFW by executing the command: ${TEST}/hack/tfw.sh start"
else
echo "Baseimage version ${BASEIMAGE_ONLY} built successfully!"
fi
} }
handle_exit() handle_exit()
@ -102,8 +109,10 @@ clone_repos()
echo -n "Cloning TFW repositories... " echo -n "Cloning TFW repositories... "
echo -n "baseimage... " && logged git clone ${remotebase}avatao-content/${BASEIMAGE}.git echo -n "baseimage... " && logged git clone ${remotebase}avatao-content/${BASEIMAGE}.git
echo -n "frontend... " && logged git clone ${remotebase}avatao-content/${FRONTEND}.git if [ -z "${BASEIMAGE_ONLY:-}" ]; then
echo -n "test... " && logged git clone ${remotebase}avatao-content/${TEST}.git echo -n "frontend... " && logged git clone ${remotebase}avatao-content/${FRONTEND}.git
echo -n "test... " && logged git clone ${remotebase}avatao-content/${TEST}.git
fi
echo "Done!" echo "Done!"
} }
@ -137,9 +146,9 @@ build_latest_baseimage()
{ {
echo -n "Building baseimage at ${TAG}... " echo -n "Building baseimage at ${TAG}... "
pushd "$BASEIMAGE" pushd "$BASEIMAGE"
spinned logged git checkout "$TAG" logged git checkout "$TAG"
spinned logged docker build -t "${BASEIMAGE_NAME}:${TAG}" .
popd popd
TFWTAG=$TAG spinned logged ${TEST}/hack/tfw.sh buildtfw
echo "Done!" echo "Done!"
} }