Rewrite production upgrade script to handle all 3 sites

This commit is contained in:
wiz 2021-08-14 06:03:30 +09:00
parent 9d75c47792
commit 8bfd315ba3
No known key found for this signature in database
GPG Key ID: A394E332255A6173

View File

@ -1,50 +1,72 @@
#!/usr/local/bin/zsh -x #!/usr/local/bin/zsh
PATH=/sbin:/bin:/usr/sbin:/usr/bin:/usr/local/sbin:/usr/local/bin:$HOME/bin PATH=/sbin:/bin:/usr/sbin:/usr/bin:/usr/local/sbin:/usr/local/bin:$HOME/bin
LOCKFILE="${HOME}/lock"
REPO=origin
BRANCH=master
HOSTNAME=$(hostname)
if [ -f $HOME/lock ];then if [ -f "${LOCKFILE}" ];then
echo "check lockfile" echo "upgrade already running? check lockfile ${LOCKFILE}"
exit 1 exit 1
fi fi
touch $HOME/lock trap 'rm -f "${LOCKFILE}"; exit $?' INT TERM EXIT
touch "${LOCKFILE}"
export NVM_DIR="$HOME/.nvm"
source "$NVM_DIR/nvm.sh"
REPO=origin
BRANCH=master
TAG="${BRANCH}" TAG="${BRANCH}"
[ ! -z "$1" ] && TAG=$1 [ ! -z "$1" ] && TAG=$1
echo "upgrading mempool to ${TAG}" | wall echo "Upgrading mempool to ${TAG}" | wall
cd "$HOME/mempool" update_repo()
git fetch "${REPO}" {
git reset --hard "${REPO}/${TAG}" local site="$1"
cd "$HOME/" echo "[*] Upgrading ${site} to ${TAG}"
cd "$HOME/${site}" || exit 1
for site in mainnet liquid testnet bisq signet git fetch "${REPO}" || exit 1
do if [ $(git tag -l "${TAG}") ];then
cd "$HOME/${site}" git reset --hard "tags/${TAG}" || exit 1
git fetch "${REPO}" else
git reset --hard "${REPO}/${TAG}" git reset --hard "${REPO}/${TAG}" || exit 1
hash=$(git rev-parse HEAD)
if [ "${site}" = "mainnet" ]
then
cd "$HOME/${site}/frontend"
npm install
npm run build
rsync -av ./dist/mempool/browser/* "${HOME}/public_html/${site}/"
fi fi
export HASH=$(git rev-parse HEAD)
}
cd "$HOME/${site}/backend" build_frontend()
npm install {
npm run build local site="$1"
done echo "[*] Building frontend for ${site}"
[ -z "${HASH}" ] && exit 1
cd "$HOME/${site}/frontend" || exit 1
npm install --no-optional || exit 1
npm run build || exit 1
}
hostname=$(hostname) build_backend()
echo "${hostname} updated to \`${TAG}\` @ \`${hash}\`" | /usr/local/bin/keybase chat send --nonblock --channel ops mempool.space {
local site="$1"
echo "[*] Building backend for ${site}"
[ -z "${HASH}" ] && exit 1
cd "$HOME/${site}/backend" || exit 1
npm install --no-optional || exit 1
npm run build || exit 1
}
rm "$HOME/lock" ship_frontend()
{
local site="$1"
cd "$HOME/${site}/frontend" || exit 1
rsync -av ./dist/mempool/browser/* "${HOME}/public_html/${site}/" || exit 1
}
export NVM_DIR="${HOME}/.nvm"
source "${NVM_DIR}/nvm.sh"
for target in mainnet liquid bisq testnet signet;do update_repo "${target}";done
for target in mainnet liquid bisq testnet signet;do build_backend "${target}";done
for target in mainnet liquid bisq;do build_frontend "${target}";done
for target in mainnet liquid bisq;do ship_frontend "${target}";done
echo "${HOSTNAME} updated to \`${TAG}\` @ \`${HASH}\`" | /usr/local/bin/keybase chat send --nonblock --channel ops mempool.space
exit 0