diff options
author | Holger Levsen <holger@layer-acht.org> | 2016-09-22 10:20:06 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2016-09-22 10:20:06 +0200 |
commit | 0d34ac4dcd4af5e1d8f5f65a283bdb93cdbd0f10 (patch) | |
tree | 380fb08add7648a9a32af44693f06daf400e6cd0 /bin | |
parent | 84d2f9f7c01f307ec2c8fa12d9199d970510db4a (diff) | |
download | jenkins.debian.net-0d34ac4dcd4af5e1d8f5f65a283bdb93cdbd0f10.tar.xz |
Revert "reproducible Debian: temporarily only notify for changes on amd64, to make the IRC channel less noisy"
This reverts commit eb8c54f821d22f420768e8bab1da29f0ca00249e.
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/reproducible_build.sh | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/bin/reproducible_build.sh b/bin/reproducible_build.sh index 4238e502..012b3a3f 100755 --- a/bin/reproducible_build.sh +++ b/bin/reproducible_build.sh @@ -130,8 +130,7 @@ 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 - # temporarily only notify for changes on amd64, to make the irc channel less noisy - if [ "$SUITE" != "testing" ] && [ "$ARCH" = "amd64" ] ; then + if [ "$SUITE" != "testing" ] ; then if [ "${OLD_STATUS}" = "reproducible" ] && [ "$STATUS" != "depwait" ] && \ ( [ "$STATUS" = "unreproducible" ] || [ "$STATUS" = "FTBFS" ] ) ; then MESSAGE="${DEBIAN_URL}/${SUITE}/${ARCH}/${SRCPACKAGE} : reproducible ➤ ${STATUS}" |