From 0c17f2010a6d296cfcecc6f703c22e185f930d63 Mon Sep 17 00:00:00 2001 From: Chris Evich Date: Mon, 15 Oct 2018 17:51:43 -0400 Subject: Cirrus: IRC message when cirrus testing successful Signed-off-by: Chris Evich --- contrib/cirrus/success.sh | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100755 contrib/cirrus/success.sh (limited to 'contrib/cirrus') diff --git a/contrib/cirrus/success.sh b/contrib/cirrus/success.sh new file mode 100755 index 000000000..d1daf9043 --- /dev/null +++ b/contrib/cirrus/success.sh @@ -0,0 +1,22 @@ +#!/bin/bash + +set -e +source $(dirname $0)/lib.sh + +req_env_var " + CIRRUS_TASK_NAME $CIRRUS_TASK_NAME + CIRRUS_BRANCH $CIRRUS_BRANCH + OS_RELEASE_ID $OS_RELEASE_ID + OS_RELEASE_VER $OS_RELEASE_VER + CIRRUS_REPO_CLONE_URL $CIRRUS_REPO_CLONE_URL +" + +REF_URL="$(echo $CIRRUS_REPO_CLONE_URL | sed 's/.git$//g')" +if [[ "$CIRRUS_BRANCH" =~ "pull" ]] +then + REF_URL="$REF_URL/$CIRRUS_BRANCH" # pull request URL +else + REF_URL="$REF_URL/commits/$CIRRUS_BRANCH" # branch merge +fi + +ircmsg "Cirrus-CI $CIRRUS_TASK_NAME on $OS_RELEASE_ID-$OS_RELEASE_VER successful for $REF_URL" -- cgit v1.2.3-54-g00ecf