diff options
author | Holger Levsen <holger@layer-acht.org> | 2015-09-09 18:17:26 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-09-09 18:17:26 +0200 |
commit | 360573765d5280b3ec794f6e51c2cd64ecc752ae (patch) | |
tree | fb86899b22c85928264e774478d041a966a90e1a | |
parent | 6edd7768aedfeacad9d264e3b43fdc4d6d85ea22 (diff) | |
download | jenkins.debian.net-360573765d5280b3ec794f6e51c2cd64ecc752ae.tar.xz |
reproducible: only look for failed builds of armhf/unstable...
-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 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="" |