summaryrefslogtreecommitdiffstats
path: root/bin/reproducible_maintenance.sh
diff options
context:
space:
mode:
authorHolger Levsen <holger@layer-acht.org>2017-01-11 01:47:59 +0100
committerHolger Levsen <holger@layer-acht.org>2017-01-11 01:47:59 +0100
commitdc97161713531342f4ccab68a645b2367d87273e (patch)
treefec3a1f8df2b3ff521079ceeff53b27fb734a9bf /bin/reproducible_maintenance.sh
parent39a37e4ae77a10d63a2a46047d053e43f60a2769 (diff)
downloadjenkins.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/reproducible_maintenance.sh')
-rwxr-xr-xbin/reproducible_maintenance.sh7
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