diff options
author | Holger Levsen <holger@layer-acht.org> | 2015-09-19 21:15:55 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-09-19 21:15:55 +0200 |
commit | 31b3cb28536189040948d40953a33ff5ff5e52e4 (patch) | |
tree | 96a5b76565084ea11be8d0c44f0f28e7d8d5251b /bin | |
parent | 5a805133b658cabd6e934cde537217dcff792ea0 (diff) | |
download | jenkins.debian.net-31b3cb28536189040948d40953a33ff5ff5e52e4.tar.xz |
reproducible: on armhf: only schedule unstable
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/reproducible_scheduler.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/bin/reproducible_scheduler.py b/bin/reproducible_scheduler.py index f1c18083..31ac06b0 100755 --- a/bin/reproducible_scheduler.py +++ b/bin/reproducible_scheduler.py @@ -494,6 +494,8 @@ def scheduler(arch): if suite not in priotized_suite_order: priotized_suite_order.append(suite) for suite in priotized_suite_order: + if arch = 'armhf' and suite != 'unstable': + continue query = 'SELECT count(*) ' \ 'FROM schedule AS p JOIN sources AS s ON p.package_id=s.id ' \ 'WHERE s.suite="{suite}" AND s.architecture="{arch}"' |