From 9bd9b71d1e87b0e52e6e04b402bcff7ed48ee386 Mon Sep 17 00:00:00 2001 From: Seth Barberee Date: Thu, 28 Jan 2021 10:01:56 -0600 Subject: inital try at GithubCI --- .github/calcrom/webhook.sh | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100755 .github/calcrom/webhook.sh (limited to '.github/calcrom/webhook.sh') diff --git a/.github/calcrom/webhook.sh b/.github/calcrom/webhook.sh new file mode 100755 index 0000000..86da74c --- /dev/null +++ b/.github/calcrom/webhook.sh @@ -0,0 +1,16 @@ +#!/bin/bash -ex + +# Only run this script if it's the master branch build. +if [[ "$TRAVIS_BRANCH" != "master" || "$TRAVIS_PULL_REQUEST" != "false" ]]; then + exit 0 +fi + +build_name=$1 +map_file=$build_name.map +if [ ! -f $map_file ]; then + echo "$map_file does not exist!" + exit 1 +fi + +output=$(perl $(dirname "$0")/calcrom.pl $build_name.map | sed -E ':a;N;$!ba;s/\r{0,1}\n/\\n/g') +curl -d "{\"username\": \"$CALCROM_DISCORD_WEBHOOK_USERNAME\", \"avatar_url\": \"$CALCROM_DISCORD_WEBHOOK_AVATAR_URL\", \"content\":\"\`\`\`$build_name progress:\\n$output\`\`\`\"}" -H "Content-Type: application/json" -X POST $CALCROM_DISCORD_WEBHOOK_URL -- cgit v1.2.3