X-Git-Url: http://xvm.mit.edu/gitweb/invirt/packages/invirt-dev.git/blobdiff_plain/7bc450adac529e07b594f2b38d268c056563ac9e..929f1553a7e60441bee2b53fed3530445a7299cf:/build-hooks/post-submit diff --git a/build-hooks/post-submit b/build-hooks/post-submit new file mode 100755 index 0000000..294818a --- /dev/null +++ b/build-hooks/post-submit @@ -0,0 +1,32 @@ +#!/bin/sh + +set -e +set -u + +escape() { + echo "$1" | sed -e 's/@/@@/g' +} + +pocket=$(escape "$1") +package=$(escape "$2") +commit=$(escape "$3") +principal=$(escape "$4") + +base=build.hooks.post_submit.zephyr +class=$(invirt-getconf "$base.class" 2>/dev/null || :) +instance=$(invirt-getconf "$base.instance" 2>/dev/null || :) +zsig=$(invirt-getconf "$base.zsig" 2>/dev/null || :) + +if [ -z "$class" ]; then + echo "I don't know where to send a commit zephyr!" >&2 + echo "Please provide a value for $base.class in" >&2 + echo "your invirt config file." >&2 + exit 1 +fi + +(echo "A new job has been submitted to the Invirtibuilder:"; + echo; + echo "pocket: $pocket"; + echo "package: $package"; + echo "commit: $commit"; + echo "principal: $principal") | zwrite -c "$class" -i "${instance:-$commit}" -s "${zsig:-Git}: $pocket" -d