From 14ed959770ad35d91bb8b84a444403dccee5cb4e Mon Sep 17 00:00:00 2001 From: Chris Koeritz Date: Thu, 16 Jul 2015 13:35:29 -0400 Subject: [PATCH] new script for building gffs code without a clean build first, then starting up the container and tailing the log. --- scripts/buildor/refresh_gffs_build.sh | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 scripts/buildor/refresh_gffs_build.sh 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 -- 2.34.1