summaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
authorHolger Levsen <holger@layer-acht.org>2016-08-26 14:33:10 +0200
committerHolger Levsen <holger@layer-acht.org>2016-08-26 14:33:41 +0200
commiteb8c54f821d22f420768e8bab1da29f0ca00249e (patch)
tree59bf0f6d8f8f32fde4fa315fe3df7b87da65781b /bin
parent2b5af09c728b1a3cefd1fcbd481392ca3d235277 (diff)
downloadjenkins.debian.net-eb8c54f821d22f420768e8bab1da29f0ca00249e.tar.xz
reproducible Debian: temporarily only notify for changes on amd64, to make the IRC channel less noisy
Diffstat (limited to 'bin')
-rwxr-xr-xbin/reproducible_build.sh3
1 files changed, 2 insertions, 1 deletions
diff --git a/bin/reproducible_build.sh b/bin/reproducible_build.sh
index 3b041ce9..79997ad4 100755
--- a/bin/reproducible_build.sh
+++ b/bin/reproducible_build.sh
@@ -130,7 +130,8 @@ update_db_and_html() {
local OLD_STATUS=$(sqlite3 -init $INIT ${PACKAGES_DB} "SELECT status FROM results WHERE package_id='${SRCPKGID}'" || \
sqlite3 -init $INIT ${PACKAGES_DB} "SELECT status FROM results WHERE package_id='${SRCPKGID}'")
# irc+mail notifications for changing status in unstable and experimental
- if [ "$SUITE" != "testing" ] ; then
+ # temporarily only notify for changes on amd64, to make the irc channel less noisy
+ if [ "$SUITE" != "testing" ] && [ "$ARCH" = "amd64" ] ; then
if [ "${OLD_STATUS}" = "reproducible" ] && [ "$STATUS" != "depwait" ] && \
( [ "$STATUS" = "unreproducible" ] || [ "$STATUS" = "FTBFS" ] ) ; then
MESSAGE="${DEBIAN_URL}/${SUITE}/${ARCH}/${SRCPACKAGE} : reproducible ➤ ${STATUS}"