Notify jenkins when a repo is updated (#67934)

This commit is contained in:
Agate 2022-08-04 13:47:26 +02:00
parent 1945ce257b
commit d1a2c7c017
2 changed files with 14 additions and 0 deletions

View File

@ -24,3 +24,5 @@ export GIT_CONFIG
tee >($BINDIR/post-receive-notify-updates 1>&2) \
| $BINDIR/post-receive-email 1>&2
$BINDIR/post-receive-notify-jenkins 1>&2

12
post-receive-notify-jenkins Executable file
View File

@ -0,0 +1,12 @@
#!/bin/sh
# Adapted from https://gist.github.com/vchatela/1cbca8f126b8ea8032ecd34b84164702
set -eu
GITDIR=$(git rev-parse --absolute-git-dir)
BASENAME=$(basename ${GITDIR})
REPOSITORY_URL=git://repos.entrouvert.org/${BASENAME}
TRIGGER_URL=https://jenkins.entrouvert.org/git/notifyCommit?url=${REPOSITORY_URL}
echo -n "Notifying Jenkins of changes to $REPOSITORY_URL..."
curl --max-time 5 --no-progress-meter "$TRIGGER_URL" || echo Failed to notify Jenkins