aboutsummaryrefslogtreecommitdiff
path: root/scripts/auto-build/run-automated-builder
diff options
context:
space:
mode:
authorIOhannes m zmölnig <zmoelnig@users.sourceforge.net>2008-09-23 09:38:02 +0000
committerIOhannes m zmölnig <zmoelnig@users.sourceforge.net>2008-09-23 09:38:02 +0000
commitd1dca9de62ebc8e25eceeb6cdc7f278e94ca13c8 (patch)
tree11b5ef7a24aeae7d17f94392c694983404250097 /scripts/auto-build/run-automated-builder
parent4f51fe6574a7d46ddb95bb85e1053e86c2fb805a (diff)
add a link to the full logs in the mail-body (sent if the build has failed)
svn path=/trunk/; revision=10308
Diffstat (limited to 'scripts/auto-build/run-automated-builder')
-rwxr-xr-xscripts/auto-build/run-automated-builder11
1 files changed, 10 insertions, 1 deletions
diff --git a/scripts/auto-build/run-automated-builder b/scripts/auto-build/run-automated-builder
index 615fa7d5..b0c79d18 100755
--- a/scripts/auto-build/run-automated-builder
+++ b/scripts/auto-build/run-automated-builder
@@ -14,10 +14,18 @@ SCRIPT_DIR=`echo $0 | sed 's|\(.*\)/.*$|\1|'`
# the name of this script
SCRIPT=`echo $0| sed 's|.*/\(.*\)|\1|g'`
+mailbody_on_failure () {
+ tail -20 ${LOGFILE}
+ echo ""
+ echo "the full logfile can be viewed at"
+ echo "http://autobuild.puredata.info/auto-build/${DATE}/logs/${LOGFILE}"
+}
+
run_build_script ()
{
distro=$1
+ ## LATER: make the uploaded ${LOGFILE} (name) be consistent with the uploaded package-file (name)
LOGFILE=${HOME}/logs/${DATE}_${TIME}_${SYSTEM}_${HOSTNAME}_${distro}_${SCRIPT}.txt
touch ${LOGFILE}
@@ -38,7 +46,8 @@ run_build_script ()
if [ "x${completion_test}" != "xSUCCESS" ]; then
if [ "x${RECIPIENT}" != "x" ]; then
SUBJECT="autobuild: $distro $HOSTNAME $DATE $TIME"
- tail -20 ${LOGFILE} | mail -s "${SUBJECT}" ${RECIPIENT}
+ mailbody_on_failure | mail -s "${SUBJECT}" ${RECIPIENT}
+ #tail -20 ${LOGFILE} | mail -s "${SUBJECT}" ${RECIPIENT}
fi
fi
}