summaryrefslogtreecommitdiff
path: root/contrib/cirrus/notice_branch_failure.sh
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/cirrus/notice_branch_failure.sh')
-rwxr-xr-xcontrib/cirrus/notice_branch_failure.sh19
1 files changed, 19 insertions, 0 deletions
diff --git a/contrib/cirrus/notice_branch_failure.sh b/contrib/cirrus/notice_branch_failure.sh
new file mode 100755
index 000000000..423231dfd
--- /dev/null
+++ b/contrib/cirrus/notice_branch_failure.sh
@@ -0,0 +1,19 @@
+#!/bin/bash
+
+set -e
+
+source $(dirname $0)/lib.sh
+
+# mIRC "escape" codes are the most standard, for a non-standard client-side interpretation.
+ETX="$(echo -n -e '\x03')"
+RED="${ETX}4"
+NOR="$(echo -n -e '\x0f')"
+
+if [[ "$CIRRUS_BRANCH" = "$DEST_BRANCH" ]]
+then
+ BURL="https://cirrus-ci.com/build/$CIRRUS_BUILD_ID"
+ ircmsg "${RED}[Action Recommended]: ${NOR}Post-merge testing on ${RED}$CIRRUS_BRANCH failed${NOR} in $CIRRUS_TASK_NAME on $(OS_RELEASE_ID)-$(OS_RELEASE_VER): $BURL. Please investigate, and re-run if appropriate."
+fi
+
+# This script assumed to be executed on failure
+die 1 "Testing Failed"