mirror of
https://github.com/containers/podman.git
synced 2025-10-19 20:23:08 +08:00
Cirrus: Remove broken IRC notifications
These will never work/pass again. Remove the scripts and function definition to prevent any accidents. Signed-off-by: Chris Evich <cevich@redhat.com>
This commit is contained in:
11
.cirrus.yml
11
.cirrus.yml
@ -34,12 +34,6 @@ env:
|
||||
TEST_REMOTE_CLIENT: false # don't test remote client by default
|
||||
ADD_SECOND_PARTITION: false # will certainly fail inside containers
|
||||
|
||||
####
|
||||
#### Credentials and other secret-sauces, decrypted at runtime when authorized.
|
||||
####
|
||||
# Freenode IRC credentials for posting status messages
|
||||
IRCID: disabled
|
||||
|
||||
|
||||
# Default VM to use unless set or modified by task
|
||||
gce_instance:
|
||||
@ -96,9 +90,6 @@ gating_task:
|
||||
# Verify expected bash environment (-o pipefail)
|
||||
pipefail_enabledscript: 'if /bin/false | /bin/true; then echo "pipefail fault" && exit 72; fi'
|
||||
|
||||
on_failure:
|
||||
failed_branch_script: '$CIRRUS_WORKING_DIR/$SCRIPT_BASE/notice_branch_failure.sh'
|
||||
|
||||
|
||||
# Post message to IRC if everything passed PR testing
|
||||
success_task:
|
||||
@ -120,5 +111,3 @@ success_task:
|
||||
image: "quay.io/libpod/gate:latest"
|
||||
cpu: 1
|
||||
memory: 1
|
||||
|
||||
success_script: '$CIRRUS_WORKING_DIR/$SCRIPT_BASE/success.sh |& ${TIMESTAMP}'
|
||||
|
@ -1,12 +0,0 @@
|
||||
# Comma separated mapping of author e-mail, to Freenode IRC nick.
|
||||
# When no match is found here, the username portion of the e-mail is used.
|
||||
# Sorting is done at runtime - first-found e-mail match wins.
|
||||
# Comments (like this) and blank lines are ignored.
|
||||
|
||||
bbaude@redhat.com,baude
|
||||
matthew.heon@pm.me,mheon
|
||||
matthew.heon@gmail.com,mheon
|
||||
emilien@redhat.com,EmilienM
|
||||
rothberg@redhat.com,vrothberg
|
||||
santiago@redhat.com,edsantiago
|
||||
gscrivan@redhat.com,giuseppe
|
|
@ -220,19 +220,6 @@ timeout_attempt_delay_command() {
|
||||
fi
|
||||
}
|
||||
|
||||
ircmsg() {
|
||||
req_env_var CIRRUS_TASK_ID IRCID
|
||||
[[ -n "$*" ]] || die 9 "ircmsg() invoked without message text argument"
|
||||
# Sometimes setup_environment.sh didn't run
|
||||
SCRIPT="$(dirname $0)/podbot.py"
|
||||
NICK="podbot_$CIRRUS_TASK_ID"
|
||||
NICK="${NICK:0:15}" # Any longer will break things
|
||||
set +e
|
||||
$SCRIPT $NICK $@
|
||||
echo "Ignoring exit($?)"
|
||||
set -e
|
||||
}
|
||||
|
||||
# This covers all possible human & CI workflow parallel & serial combinations
|
||||
# where at least one caller must definitively discover if within a commit range
|
||||
# there is at least one release tag not having any '-' characters (return 0)
|
||||
|
@ -1,19 +0,0 @@
|
||||
#!/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"
|
@ -1,105 +0,0 @@
|
||||
#!/usr/bin/env python3
|
||||
|
||||
# Simple and dumb script to send a message to the #podman IRC channel on frenode
|
||||
# Based on example from: https://pythonspot.com/building-an-irc-bot/
|
||||
|
||||
import os
|
||||
import time
|
||||
import random
|
||||
import errno
|
||||
import socket
|
||||
import sys
|
||||
|
||||
class IRC:
|
||||
|
||||
response_timeout = 30 # seconds
|
||||
irc = socket.socket()
|
||||
|
||||
def __init__(self, server, nickname, channel):
|
||||
self.server = server
|
||||
self.nickname = nickname
|
||||
self.channel = channel
|
||||
self.irc = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
|
||||
|
||||
def _send(self, cmdstr):
|
||||
self.irc.send(bytes(cmdstr + '\r\n', 'utf-8'))
|
||||
|
||||
def message(self, msg):
|
||||
data = 'PRIVMSG {0} :{1}\r\n'.format(self.channel, msg)
|
||||
print(data)
|
||||
self._send(data)
|
||||
|
||||
@staticmethod
|
||||
def fix_newlines(bufr):
|
||||
return bufr.replace('\\r\\n', '\n')
|
||||
|
||||
def _required_response(self, needle, haystack):
|
||||
start = time.time()
|
||||
end = start + self.response_timeout
|
||||
while time.time() < end:
|
||||
if haystack.find(needle) != -1:
|
||||
return (False, haystack)
|
||||
time.sleep(0.1)
|
||||
try:
|
||||
haystack += str(self.irc.recv(4096, socket.MSG_DONTWAIT))
|
||||
except socket.error as serr:
|
||||
if serr.errno == errno.EWOULDBLOCK:
|
||||
continue
|
||||
raise # can't handle this
|
||||
return (True, haystack) # Error
|
||||
|
||||
def connect(self, username, password):
|
||||
# This is ugly as sin, but seems to be a working send/expect sequence
|
||||
|
||||
print("connecting to: {0}".format(self.server))
|
||||
self.irc.connect((self.server, 6667)) #connects to the server
|
||||
self._send("USER {0} {0} {0} :I am {0}".format(self.nickname))
|
||||
self._send("NICK {0}".format(self.nickname))
|
||||
|
||||
err, haystack = self._required_response('End of /MOTD command.'
|
||||
''.format(self.nickname), "")
|
||||
if err:
|
||||
print(self.fix_newlines(haystack))
|
||||
print("Error connecting to {0}".format(self.server))
|
||||
return True
|
||||
|
||||
print("Logging in as {0}".format(username))
|
||||
self._send("PRIVMSG NickServ :IDENTIFY {0} {1}".format(username, password))
|
||||
err, _ = self._required_response("You are now identified for", "")
|
||||
if err:
|
||||
print("Error logging in to {0} as {1}".format(self.server, username))
|
||||
return True
|
||||
|
||||
print("Joining {0}".format(self.channel))
|
||||
self._send("JOIN {0}".format(self.channel))
|
||||
err, haystack = self._required_response("{0} {1} :End of /NAMES list."
|
||||
"".format(self.nickname, self.channel),
|
||||
haystack)
|
||||
print(self.fix_newlines(haystack))
|
||||
if err:
|
||||
print("Error joining {0}".format(self.channel))
|
||||
return True
|
||||
return False
|
||||
|
||||
def quit(self):
|
||||
print("Quitting")
|
||||
self._send("QUIT :my work is done here")
|
||||
self.irc.close()
|
||||
|
||||
|
||||
if len(sys.argv) < 3:
|
||||
print("Error: Must pass desired nick and message as parameters")
|
||||
else:
|
||||
for try_again in (True,False):
|
||||
irc = IRC("irc.freenode.net", sys.argv[1], "#podman")
|
||||
err = irc.connect(*os.environ.get('IRCID', 'Big Bug').split(" ", 2))
|
||||
if err and try_again:
|
||||
print("Trying again in 5 seconds...")
|
||||
time.sleep(5)
|
||||
continue
|
||||
elif err:
|
||||
break
|
||||
irc.message(" ".join(sys.argv[2:]))
|
||||
time.sleep(5.0) # avoid join/quit spam
|
||||
irc.quit()
|
||||
break
|
@ -1,66 +0,0 @@
|
||||
#!/bin/bash
|
||||
|
||||
set -e
|
||||
|
||||
source $(dirname $0)/lib.sh
|
||||
|
||||
req_env_var CIRRUS_BRANCH CIRRUS_REPO_FULL_NAME CIRRUS_BASE_SHA CIRRUS_CHANGE_IN_REPO CIRRUS_CHANGE_MESSAGE
|
||||
|
||||
cd $CIRRUS_WORKING_DIR
|
||||
|
||||
if [[ "$CIRRUS_BRANCH" =~ "pull" ]]
|
||||
then
|
||||
echo "Retrieving latest HEADS and tags"
|
||||
git fetch --all --tags
|
||||
echo "Finding commit authors for PR $CIRRUS_PR"
|
||||
unset NICKS
|
||||
if [[ -r "$AUTHOR_NICKS_FILEPATH" ]]
|
||||
then
|
||||
SHARANGE="${CIRRUS_BASE_SHA}..${CIRRUS_CHANGE_IN_REPO}"
|
||||
EXCLUDE_RE='merge-robot'
|
||||
EMAILCSET='[:alnum:]-+_@.'
|
||||
AUTHOR_NICKS=$(egrep -v '(^[[:space:]]*$)|(^[[:space:]]*#)' "$AUTHOR_NICKS_FILEPATH" | sort -u)
|
||||
# Depending on branch-state, it's possible SHARANGE could be _WAY_ too big
|
||||
MAX_NICKS=10
|
||||
# newline separated
|
||||
GITLOG="git log --format='%ae'"
|
||||
COMMIT_AUTHORS=$($GITLOG $SHARANGE || $GITLOG -1 HEAD | \
|
||||
tr --delete --complement "$EMAILCSET[:space:]" | \
|
||||
egrep -v "$EXCLUDE_RE" | \
|
||||
sort -u | \
|
||||
tail -$MAX_NICKS)
|
||||
|
||||
for c_email in $COMMIT_AUTHORS
|
||||
do
|
||||
c_email=$(echo "$c_email" | tr --delete --complement "$EMAILCSET")
|
||||
echo -e "\tExamining $c_email"
|
||||
NICK=$(echo "$AUTHOR_NICKS" | grep -m 1 "$c_email" | \
|
||||
awk --field-separator ',' '{print $2}' | tr -d '[[:blank:]]')
|
||||
if [[ -n "$NICK" ]]
|
||||
then
|
||||
echo -e "\t\tFound $c_email -> $NICK in $(basename $AUTHOR_NICKS_FILEPATH)"
|
||||
else
|
||||
echo -e "\t\tNot found in $(basename $AUTHOR_NICKS_FILEPATH), using e-mail username."
|
||||
NICK=$(echo "$c_email" | cut -d '@' -f 1)
|
||||
fi
|
||||
if ! echo "$NICKS" | grep -q "$NICK"
|
||||
then
|
||||
echo -e "\tUsing nick $NICK"
|
||||
NICKS="${NICKS:+$NICKS, }$NICK"
|
||||
else
|
||||
echo -e "\tNot re-adding duplicate nick $NICK"
|
||||
fi
|
||||
done
|
||||
fi
|
||||
|
||||
unset MENTION_PREFIX
|
||||
[[ -z "$NICKS" ]] || \
|
||||
MENTION_PREFIX="$NICKS: "
|
||||
|
||||
URL="https://github.com/$CIRRUS_REPO_FULL_NAME/pull/$CIRRUS_PR"
|
||||
PR_SUBJECT=$(echo "$CIRRUS_CHANGE_MESSAGE" | head -1)
|
||||
ircmsg "${MENTION_PREFIX}Cirrus-CI testing successful for PR '$PR_SUBJECT': $URL"
|
||||
else
|
||||
URL="https://cirrus-ci.com/github/containers/libpod/$CIRRUS_BRANCH"
|
||||
ircmsg "Cirrus-CI testing branch $(basename $CIRRUS_BRANCH) successful: $URL"
|
||||
fi
|
Reference in New Issue
Block a user