summaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
authorHolger Levsen <holger@layer-acht.org>2015-09-22 15:08:57 +0200
committerHolger Levsen <holger@layer-acht.org>2015-09-22 15:08:57 +0200
commite0be156e44d68f6c7c5f316f740c3baef1aa3966 (patch)
treedba6a426152a5381098adf66720b409c953bdf24 /bin
parentf0083b6c06235e52788e2c08e9ef61049c45f72a (diff)
downloadjenkins.debian.net-e0be156e44d68f6c7c5f316f740c3baef1aa3966.tar.xz
reproducible: also notify irc if only old_ftbfs were scheduled
Diffstat (limited to 'bin')
-rwxr-xr-xbin/reproducible_scheduler.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/reproducible_scheduler.py b/bin/reproducible_scheduler.py
index eab44aba..06021591 100755
--- a/bin/reproducible_scheduler.py
+++ b/bin/reproducible_scheduler.py
@@ -544,7 +544,7 @@ def scheduler(arch):
message += ' packages in total.'
# only notifiy irc if there were packages scheduled in any suite
for x in SUITES:
- if len(untested[x])+len(new[x])+len(old[x]) > 0:
+ if len(untested[x])+len(new[x])+len(old[x])+len(old_ftbfs[x]) > 0:
log.info(message)
irc_msg(message)
break