From 360573765d5280b3ec794f6e51c2cd64ecc752ae Mon Sep 17 00:00:00 2001 From: Holger Levsen Date: Wed, 9 Sep 2015 18:17:26 +0200 Subject: reproducible: only look for failed builds of armhf/unstable... --- bin/reproducible_maintenance.sh | 3 +++ 1 file changed, 3 insertions(+) (limited to 'bin') diff --git a/bin/reproducible_maintenance.sh b/bin/reproducible_maintenance.sh index 3424a195..4d0b4353 100755 --- a/bin/reproducible_maintenance.sh +++ b/bin/reproducible_maintenance.sh @@ -95,6 +95,9 @@ if [ "$HOSTNAME" = "jenkins" ] ; then REASON="maintenance reschedule: reschedule builds which failed due to network errors" for SUITE in $(echo $FAILED_BUILDS | sed "s# #\n#g" | cut -d "/" -f8 | sort -u) ; do for ARCH in $(echo $FAILED_BUILDS | sed "s# #\n#g" | cut -d "/" -f9 | sort -u) ; do + if [ "$ARCH" = "armhf" ] && [ "$SUITE" != "unstable" ] ; then + continue + fi CANDIDATES=$(for PKG in $(echo $FAILED_BUILDS | sed "s# #\n#g" | grep "/$SUITE/$ARCH/" | cut -d "/" -f10 | cut -d "_" -f1) ; do echo "$PKG" ; done) # double check those builds actually failed TO_SCHEDULE="" -- cgit v1.2.3-54-g00ecf