From: Chris Koeritz Date: Mon, 1 Apr 2013 17:10:32 +0000 (-0400) Subject: better version actually tests the pieces for success. X-Git-Tag: 2.140.90~1030 X-Git-Url: https://feistymeow.org/gitweb/?a=commitdiff_plain;h=e68a1cc658befa543b2c4d4238279e66210696b1;p=feisty_meow.git better version actually tests the pieces for success. --- diff --git a/customizing/fred/build_cak0l.sh b/customizing/fred/build_cak0l.sh index 0c5bfff9..02e206ce 100644 --- a/customizing/fred/build_cak0l.sh +++ b/customizing/fred/build_cak0l.sh @@ -1,11 +1,15 @@ #!/bin/bash +source "$FEISTY_MEOW_SCRIPTS/core/functions.sh" # for check_result. + function build_xsede() { pushd ~/xsede/code/cak0l/trunk + check_result "entering trunk directory" echo "Build starting at: $(date)" \rm -rf unit-test-reports ant -Dbuild.targetArch=64 build + check_result "building the trunk" # fix memory limits. #hmmm: clean these up. if [ -f runContainer.sh ]; then @@ -32,6 +36,7 @@ function rebuild_xsede() { pushd ~/xsede/code/cak0l/trunk ant clean + check_result "cleaning the trunk" popd build_xsede }