diff options
author | Holger Levsen <holger@layer-acht.org> | 2017-01-11 01:47:59 +0100 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2017-01-11 01:47:59 +0100 |
commit | dc97161713531342f4ccab68a645b2367d87273e (patch) | |
tree | fec3a1f8df2b3ff521079ceeff53b27fb734a9bf /bin | |
parent | 39a37e4ae77a10d63a2a46047d053e43f60a2769 (diff) | |
download | jenkins.debian.net-dc97161713531342f4ccab68a645b2367d87273e.tar.xz |
reproducible Debian: only remote errors are detected for other projects
Signed-off-by: Holger Levsen <holger@layer-acht.org>
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/reproducible_maintenance.sh | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/bin/reproducible_maintenance.sh b/bin/reproducible_maintenance.sh index eeaba7cf..ce8bbc9b 100755 --- a/bin/reproducible_maintenance.sh +++ b/bin/reproducible_maintenance.sh @@ -435,7 +435,12 @@ 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 archlinux fedora ; do + if [ "$(basename $PROBLEM)" != "reproducible-remote-error.log" ]; then + OTHERPROJECTS="" + else + OTHERPROJECTS="archlinux fedora" + fi + for a in $ARCHS $OTHERPROJECTS; do echo "- $(grep https $TMPFILE|grep -c _$a) from $a." done elif grep -q 'stale builds found' $TMPFILE ; then |