From: Chris Koeritz Date: Thu, 16 Jul 2015 17:35:29 +0000 (-0400) Subject: new script for building gffs code without a clean build first, then starting up the... X-Git-Tag: 2.140.90~611^2 X-Git-Url: https://feistymeow.org/gitweb/?a=commitdiff_plain;h=14ed959770ad35d91bb8b84a444403dccee5cb4e;p=feisty_meow.git new script for building gffs code without a clean build first, then starting up the container and tailing the log. --- diff --git a/scripts/buildor/refresh_gffs_build.sh b/scripts/buildor/refresh_gffs_build.sh new file mode 100644 index 00000000..8fd9e0f9 --- /dev/null +++ b/scripts/buildor/refresh_gffs_build.sh @@ -0,0 +1,16 @@ +#!/bin/bash + +source $FEISTY_MEOW_SCRIPTS/buildor/gffs_builders.sh + +echo stopping any running genesis processes... +bash $XSEDE_TEST_ROOT/library/zap_genesis_javas.sh + +echo building the code freshly, although not with a clean first... +build_gffs +if [ $? -ne 0 ]; then + echo failed to build the code. +fi + +echo starting container now and spooling its log file... +(bash $XSEDE_TEST_ROOT/library/maybe_restart_container.sh &>$TMP/container_restarty.log & ) +tail -f ~/.GenesisII/container.log