[Qa-jenkins-scm] [jenkins.debian.net] 01/01: reproducible: only care about dependency failures in testing as the other suites are moving too much
Holger Levsen
holger at moszumanska.debian.org
Fri May 22 13:37:47 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 c3fa4105f0cf8768d81bfae39a14abeb5afd9c79
Author: Holger Levsen <holger at layer-acht.org>
Date: Fri May 22 15:37:28 2015 +0200
reproducible: only care about dependency failures in testing as the other suites are moving too much
---
bin/reproducible_breakages.py | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/bin/reproducible_breakages.py b/bin/reproducible_breakages.py
index 7e3cbcb..268875d 100755
--- a/bin/reproducible_breakages.py
+++ b/bin/reproducible_breakages.py
@@ -107,9 +107,12 @@ def lack_buildinfo():
def pbuilder_dep_fail():
log.info('running pbuilder_dep_fail check...')
bad_pkgs = []
+ # we only care about these failures in the testing suite as they happen
+ # all the time in other suites, as packages are buggy
+ # and specific versions also come and go
query = '''SELECT s.name, r.version, s.suite, s.architecture
FROM sources AS s JOIN results AS r ON r.package_id=s.id
- WHERE r.status = "FTBFS"
+ WHERE r.status = "FTBFS" AND s.suite = "testing"
ORDER BY s.name ASC, s.suite DESC'''
results = query_db(query)
for pkg, version, suite, arch in results:
--
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