From 22f5b00a38e2c3529d79f8d8b6c12cae4428ab04 Mon Sep 17 00:00:00 2001 From: Hans-Christoph Steiner Date: Mon, 22 Oct 2007 21:40:19 +0000 Subject: first stab at making a script to mail the MinGW build logs from the auto-build web server svn path=/trunk/; revision=8860 --- scripts/auto-build/mail-mingw-log-hack.sh | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100755 scripts/auto-build/mail-mingw-log-hack.sh (limited to 'scripts') diff --git a/scripts/auto-build/mail-mingw-log-hack.sh b/scripts/auto-build/mail-mingw-log-hack.sh new file mode 100755 index 00000000..32d63f16 --- /dev/null +++ b/scripts/auto-build/mail-mingw-log-hack.sh @@ -0,0 +1,18 @@ +#!/bin/sh + + +# the source dir where this script is +SCRIPT_DIR=`echo $0 | sed 's|\(.*\)/.*$|\1|'` +. $SCRIPT_DIR/auto-build-common + +# the name of this script +SCRIPT=`echo $0| sed 's|.*/\(.*\)|\1|g'` + +for logfile in `ls -1 /home/pd/logs/${DATE}_*_mingw*.txt`; do + completion_test=`tail -1 ${logfile}` + if [ "x${completion_test}" != "xSUCCESS" ]; then + SUBJECT="autobuild: $distro $HOSTNAME $DATE $TIME" +# tail -20 ${logfile} | mail -s "autobuild: $logfile" ${RECIPIENT} + tail -20 ${logfile} | mail -s "autobuild: $logfile" hans@eds.org + fi +done -- cgit v1.2.1