From ee79a2ba71efc425f0ef6e592adf080495ba6094 Mon Sep 17 00:00:00 2001 From: Holger Levsen Date: Sat, 3 Nov 2012 10:31:38 +0100 Subject: add script to pass d-i daily build logs --- TODO | 2 +- bin/parse_d-i_logs.sh | 34 ++++++++++++++++++++++++++++++++++ update_jdn.sh | 2 +- 3 files changed, 36 insertions(+), 2 deletions(-) create mode 100755 bin/parse_d-i_logs.sh diff --git a/TODO b/TODO index c219e5bb..1530214f 100644 --- a/TODO +++ b/TODO @@ -19,7 +19,7 @@ About jenkins.debian.net == General todo * mail notifications (to where?) -* proper backup (=daily), bottom of this document +* proper backup (=daily), see bottom of this document for what to backup * more tests (see below) * use https://github.com/openstack*ci/jenkins*job*builder to create _all_ job configurations (if possible, else mix with job*dsl*plugin or https://github.com/JoelJ/Templating.git diff --git a/bin/parse_d-i_logs.sh b/bin/parse_d-i_logs.sh new file mode 100755 index 00000000..b3ec2ab0 --- /dev/null +++ b/bin/parse_d-i_logs.sh @@ -0,0 +1,34 @@ +#!/bin/bash + +# Copyright 2012 Holger Levsen +# released under the GPLv=2 + +# $1 = URL + +if [ "$1" == "" ] ; then + echo "need at least one URL to act on" + echo '# $1 = URL' + exit 1 +fi + +#set -x +set -e +export LANG=C +export http_proxy="http://localhost:3128" + +TMPFILE=$(mktemp) +curl $1 > $TMPFILE +grep failed $TMPFILE > /dev/null && { + figlet Warning: + figlet failed builds: + for FILE in $(grep failed $TMPFILE | awk '{print $2}' FS=href= | cut -d '"' -f2) ; do + echo Warning: $FILE failed + done +} || figlet ok +echo +echo $1 +echo +cat $TMPFILE + +sed -i -s 's#