[Qa-jenkins-scm] [jenkins.debian.net] 01/01: reproducible: maintenance: do not auto-reschedule packages which actually succeeded

Holger Levsen holger at moszumanska.debian.org
Sat Aug 1 09:49:48 UTC 2015


This is an automated email from the git hooks/post-receive script.

holger pushed a commit to branch master
in repository jenkins.debian.net.

commit eac2164ac72ed531c5acc2be47f7b2ab576103b0
Author: Mattia Rizzolo <mattia at mapreri.org>
Date:   Sat Aug 1 09:19:05 2015 +0000

    reproducible: maintenance: do not auto-reschedule packages which actually succeeded
---
 bin/reproducible_maintenance.sh | 9 +++++++--
 1 file changed, 7 insertions(+), 2 deletions(-)

diff --git a/bin/reproducible_maintenance.sh b/bin/reproducible_maintenance.sh
index bc6ccb1..3bb003a 100755
--- a/bin/reproducible_maintenance.sh
+++ b/bin/reproducible_maintenance.sh
@@ -79,8 +79,13 @@ if [ ! -z "$FAILED_BUILDS" ] ; then
 	for SUITE in $(echo $FAILED_BUILDS | sed "s# #\n#g" | cut -d "/" -f8 | sort -u) ; do
 		REQUESTER="jenkins maintenance job"
 		REASON="maintenance reschedule: reschedule builds which failed due to network errors"
-		CANDIDATES=$(for PKG in $(echo $FAILED_BUILDS | sed "s# #\n#g" | grep "/$SUITE/" | cut -d "/" -f10 | cut -d "_" -f1) ; do echo -n "$PKG " ; done)
-		schedule_packages $CANDIDATES
+		CANDIDATES=$(for PKG in $(echo $FAILED_BUILDS | sed "s# #\n#g" | grep "/$SUITE/" | cut -d "/" -f10 | cut -d "_" -f1) ; do echo "$PKG" ; done)
+		# double check those builds actually failed
+		for pkg in $CANDIDATES ; do
+			QUERY="SELECT s.name FROM sources AS s JOIN results AS r ON r.package_id=s.id WHERE s.suite='$SUITE' AND r.status='FTBFS' AND s.name='$pkg'"
+			TO_SCHEDULE=${TO_SCHEDULE:+"$TO_SCHEDULE "}$(sqlite3 $INIT $PACKAGES_DB "$QUERY")
+		done
+		schedule_packages $TO_SCHEDULE
 	done
 	DIRTY=true
 fi

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/qa/jenkins.debian.net.git



More information about the Qa-jenkins-scm mailing list