[Qa-jenkins-scm] [jenkins.debian.net] 02/07: reproducible: scheduler: add a --status (-r) option to specify a package status to pick packages from. This is ANDed to the -i if provided

Holger Levsen holger at moszumanska.debian.org
Sun Jul 5 13:12:15 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 e4b8c0d6867756c3420f1a5c13506feed2dfa8e8
Author: Mattia Rizzolo <mattia at mapreri.org>
Date:   Sun Jun 21 14:21:26 2015 +0000

    reproducible: scheduler: add a --status (-r) option to specify a package status to pick packages from. This is ANDed to the -i if provided
---
 bin/reproducible_remote_scheduler.py | 27 ++++++++++++++++++++-------
 1 file changed, 20 insertions(+), 7 deletions(-)

diff --git a/bin/reproducible_remote_scheduler.py b/bin/reproducible_remote_scheduler.py
index 580d688..2086e85 100755
--- a/bin/reproducible_remote_scheduler.py
+++ b/bin/reproducible_remote_scheduler.py
@@ -15,7 +15,8 @@ import argparse
 parser = argparse.ArgumentParser(
     description='Reschedule packages to re-test their reproducibility',
     epilog='The build results will be announced on the #debian-reproducible' +
-           ' IRC channel.')
+           ' IRC channel unless -n is provided.\nSpecifying both -r and -i ' +
+           'means "all packages with that issue AND that status"')
 group = parser.add_mutually_exclusive_group()
 group.add_argument('-a', '--artifacts', default=False, action='store_true',
                    help='Save artifacts (for further offline study)')
@@ -28,8 +29,10 @@ parser.add_argument('-m', '--message', default='', nargs='+',
                     ' about the scheduling')
 parser.add_argument('-s', '--suite', required=True,
                     help='Specify the suite to schedule in')
+parser.add_argument('-r', '--status', required=False,
+                    help='Schedule all package with this status')
 parser.add_argument('-i', '--issue', required=False,
-                    help='Schedule all packages with this issue(s)')
+                    help='Schedule all packages with this issue')
 parser.add_argument('packages', metavar='package', nargs='*',
                     help='list of packages to reschedule')
 scheduling_args = parser.parse_known_args()[0]
@@ -67,6 +70,7 @@ except KeyError:
 suite = scheduling_args.suite
 reason = ' '.join(scheduling_args.message)
 issue = scheduling_args.issue
+status = scheduling_args.status
 packages = scheduling_args.packages
 artifacts = scheduling_args.artifacts
 notify = not scheduling_args.no_notify or scheduling_args.noisy
@@ -80,6 +84,7 @@ log.debug('Notify: ' + str(notify))
 log.debug('Debug url: ' + str(debug_url))
 log.debug('Architecture: ' + defaultarch)
 log.debug('Issue: ' + issue if issue else str(None))
+log.debug('Status: ' + status if status else str(None))
 log.debug('Suite: ' + suite)
 log.debug('Packages: ' + ' '.join(packages))
 
@@ -88,12 +93,20 @@ if suite not in SUITES:
     log.critical('Please chose between ' + ', '.join(SUITES))
     sys.exit(1)
 
-if issue:
-    log.info('Querying packages with given issues in the given suite...')
+if issue or status:
+    formatter = dict(suite=suite)
+    log.info('Querying packages with given issues/status...')
     query = 'SELECT s.name ' + \
-            'FROM sources AS s JOIN notes AS n ON n.package_id=s.id ' + \
-            'WHERE n.issues like "%{issue}%" and s.suite = "{suite}"'
-    results = query_db(query.format(issue=issue, suite=suite))
+            'FROM sources AS s, notes AS n, results AS r ' + \
+            'WHERE n.package_id=s.id AND r.package_id=s.id ' + \
+            'AND s.suite = "{suite}" '
+    if issue:
+        query += 'AND n.issues LIKE "%{issue}%" '
+        formatter['issue'] = issue
+    if status:
+        query += 'AND r.status = "{status}"'
+        formatter['status'] = status
+    results = query_db(query.format_map(formatter))
     results = [x for (x,) in results]
     log.info('Selected packages: ' + ' '.join(results))
     packages.extend(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