diff options
author | Holger Levsen <holger@layer-acht.org> | 2015-03-17 22:11:04 +0100 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-03-17 22:11:04 +0100 |
commit | 88df7351eeecb0569f3a70f40d926660a8faa12c (patch) | |
tree | ef31368fbc3cc4d6bbbd9ea39c2d42c73d481e66 /bin | |
parent | 881a5710e50e3d1fab81014c1993602ba9044416 (diff) | |
download | jenkins.debian.net-88df7351eeecb0569f3a70f40d926660a8faa12c.tar.xz |
reproducible: include suite+arch in notifications
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/reproducible_build.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/reproducible_build.sh b/bin/reproducible_build.sh index 756d2aba..9899f494 100755 --- a/bin/reproducible_build.sh +++ b/bin/reproducible_build.sh @@ -119,7 +119,7 @@ call_debbindiff() { sqlite3 -init $INIT ${PACKAGES_DB} "INSERT INTO stats_build (name, version, suite, architecture, status, build_date, build_duration) VALUES ('${SRCPACKAGE}', '${VERSION}', '${SUITE}', '${ARCH}', 'unreproducible', '${DATE}', '${DURATION}')" update_db_and_html if [ "${OLD_STATUS}" = "reproducible" ]; then - MESSAGE="${SRCPACKAGE}: status changed from reproducible -> unreproducible. ${REPRODUCIBLE_URL}/${SRCPACKAGE}" + MESSAGE="${SRCPACKAGE} in ${SUITE} on ${ARCH}: status changed from reproducible -> unreproducible. ${REPRODUCIBLE_URL}/${SRCPACKAGE}" echo "\n$MESSAGE" | tee -a ${RBUILDLOG} kgb-client --conf /srv/jenkins/kgb/debian-reproducible.conf --relay-msg "$MESSAGE" || true # don't fail the whole job fi |