]> git.ozlabs.org Git - next-scripts/blobdiff - build_msg
update to_build_host a bit
[next-scripts] / build_msg
index fd6169ed0df39f78060aa185df36de317b3a4c0c..5ba2bbb83f9ad6b73c542e499d1c7f7b60a2d5a2 100755 (executable)
--- a/build_msg
+++ b/build_msg
@@ -1,28 +1,15 @@
 #!/bin/bash
 
-log=../merge.log
-[ -f merge.log ] && log=merge.log
-control=../real_control
-[ -f real_control ] && control=real_control
+subject="build failure after merge of the BRANCH tree"
 
-branch=""
-[ "$1" = "-t" ] && {
-        branch=$2
-        shift 2
-}
+tools_dir=$(dirname "$0")
+"$tools_dir"/message_helper "$@" "$subject" <<EOF
+After merging the BRANCH tree, today's linux-next build (KCONFIG_NAME) failed like this:
 
-[ "$branch" ] || {
-       branch=$(grep '^Merging ' $log | tail -1 | sed 's/^Merging //' | sed 's/ .*$//')
-       branch=${branch#quilt/}
-       branch=${branch%%/*}
-}
 
-contact=$(awk -F '     ' '$3=="'"$branch"'" { print $1; }' $control)
-greeting=${contact%% *}
-greeting=${greeting#\"}
-[ "${contact%,*}" = "${contact}" ] || greeting="all"
+Caused by commit
 
-sylpheed --compose "mailto:$contact?Cc=linux-next@vger.kernel.org,%20linux-kernel@vger.kernel.org&Subject=linux-next: build failure after merge of the $branch tree&Body=Hi $greeting,%0A\
-%0A\
-After merging the $branch tree, today's linux-next build ()%0A\
-failed like this:"
+   ("")
+EOF
+
+exit 0