diff options
author | Holger Levsen <holger@layer-acht.org> | 2016-12-23 14:07:50 +0100 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2016-12-23 14:07:50 +0100 |
commit | 359b43bc5b3ca206f58e1e3c0012811876cc2b38 (patch) | |
tree | 19ff2a080da6c3034bbb898a6e9ee896539d47a1 /bin | |
parent | fcaa917278de1593ce737a95b5fdb9d210f10e85 (diff) | |
download | jenkins.debian.net-359b43bc5b3ca206f58e1e3c0012811876cc2b38.tar.xz |
reproducible Debian: give stats about failures per arch too
Signed-off-by: Holger Levsen <holger@layer-acht.org>
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/reproducible_maintenance.sh | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/bin/reproducible_maintenance.sh b/bin/reproducible_maintenance.sh index 3bfd5d7c..64332ef2 100755 --- a/bin/reproducible_maintenance.sh +++ b/bin/reproducible_maintenance.sh @@ -423,6 +423,9 @@ if [ "$HOSTNAME" = "$MAINNODE" ] && [ $(date -u +%H) -eq 0 ] ; then fi if grep -q https $TMPFILE ; then echo "$(grep -c https $TMPFILE) entries found:" + for a in $ARCHS ; do + echo "- $(grep https $TMPFILE|grep -c $a) on $a." + done else echo "$(grep -c 'stale builds found' $TMPFILE || true) entries found:" fi |