1
0
mirror of https://github.com/avatao-content/test-tutorial-framework synced 2024-07-08 13:08:45 +00:00
test-tutorial-framework/hack/bootstrap_tfw_dev.sh

54 lines
1.8 KiB
Bash
Raw Normal View History

#!/usr/bin/env bash
2018-03-23 20:39:39 +00:00
set -eo pipefail
shopt -s expand_aliases
2018-03-24 10:47:38 +00:00
TFW_POSTFIX=tutorial-framework
BASEIMAGE=baseimage-${TFW_POSTFIX}
2018-03-30 21:56:14 +00:00
TEST=test-${TFW_POSTFIX}
2018-03-24 10:47:38 +00:00
FRONTEND=frontend-${TFW_POSTFIX}
LOGFILE=/tmp/bootstrap_tfw.log
[ "$(uname)" == "Darwin" ] && alias sed="gsed" || :
showlog() { echo && echo "Error! Showing logs:" && cat $LOGFILE; }
cleanlog() { rm $LOGFILE; }
trap showlog ERR
trap cleanlog EXIT
: > $LOGFILE
echo -n "Cloning TFW repositories... "
[ ! -z "$TFWDEV" ] && echo -n "baseimage... " && git clone git@github.com:avatao-content/${BASEIMAGE}.git >> $LOGFILE 2>&1 || :
2018-03-24 10:47:38 +00:00
echo -n "frontend... " && git clone git@github.com:avatao-content/${FRONTEND}.git >> $LOGFILE 2>&1
2018-03-30 21:56:14 +00:00
echo -n "test... " && git clone git@github.com:avatao-content/${TEST}.git >> $LOGFILE 2>&1
echo "Done!"
echo -n "Installing frontend dependencies... "
cd ${FRONTEND}
yarn install >> $LOGFILE 2>&1
cd ..
echo "Done!"
if [ -z "$TFWDEV" ]; then
2018-03-31 19:22:33 +00:00
echo -n "Pinning latest TFW baseimage version... "
LATESTTAG="$(git ls-remote --tags git@github.com:avatao-content/baseimage-tutorial-framework.git |
cut -f2 |
grep -oP '(?<=refs/tags/)\w+-\d{8}$' |
sort -t '-' -k2 |
tail -n 1)"
echo -n "which is ${LATESTTAG}... "
sed -i "1 s/.*/&:${LATESTTAG}/" "${TEST}/solvable/Dockerfile"
2018-03-31 19:22:33 +00:00
echo "Done!"
rm -rf "${TEST}/.git"
rm -rf "${FRONTEND}/.git"
2018-03-31 19:22:33 +00:00
echo -n "Merging repositories... "
NESTED_FRONTEND="${TEST}/solvable/frontend"
rm -rf $NESTED_FRONTEND
mv "$FRONTEND" "$NESTED_FRONTEND"
2018-03-31 19:22:33 +00:00
echo "Done!"
fi
echo
2018-03-31 18:02:01 +00:00
echo "You can build & start TFW by executing the command: ${TEST}/hack/tfw.sh start"