summaryrefslogtreecommitdiffstats
path: root/bin/reproducible_scheduler.py
diff options
context:
space:
mode:
authorHolger Levsen <holger@layer-acht.org>2015-05-18 09:24:10 +0200
committerHolger Levsen <holger@layer-acht.org>2015-05-18 09:24:10 +0200
commita446d2037f159c500b5ffe6f2be4f5a62ec41176 (patch)
treebe7f2397ace520b7e2ddbedf5e68d38f6f6b8b6a /bin/reproducible_scheduler.py
parent6983ee99b68dc7c4fa6fa4f878b3a27b836c551b (diff)
downloadjenkins.debian.net-a446d2037f159c500b5ffe6f2be4f5a62ec41176.tar.xz
reproducible: re-schedule unstable twice as fast as testing as unstable changes more frequently and atm we mostly care about sid
Diffstat (limited to 'bin/reproducible_scheduler.py')
-rwxr-xr-xbin/reproducible_scheduler.py14
1 files changed, 8 insertions, 6 deletions
diff --git a/bin/reproducible_scheduler.py b/bin/reproducible_scheduler.py
index 7cee0aee..58a15b3a 100755
--- a/bin/reproducible_scheduler.py
+++ b/bin/reproducible_scheduler.py
@@ -256,16 +256,18 @@ def scheduler():
# old packages
old = {}
if total <= 250:
- many_old = 25 # multiplied by 10, usually, see below
+ many_old_base = 35 # multiplied by 10 or 5, usually, see below
elif total <= 350:
- many_old = 17 # also...
+ many_old_base = 25 # also...
else:
- many_old = 0 # ...
+ many_old_base = 0 # ...
for suite in SUITES:
- if suite != 'experimental':
- suite_many_old = many_old*10 # experimental is roughly one tenth of the size of the other suites
+ if suite = 'unstable':
+ suite_many_old = many_old_base*10 # experimental is roughly one tenth of the size of the other suites
+ elif suite = 'testing':
+ suite_many_old = many_old_base*5 # re-schedule testing less than unstable as we care more about unstable and because unstable changes more frequently
else:
- suite_many_old = many_old
+ suite_many_old = many_old_base
log.info('Requesting ' + str(suite_many_old) + ' old packages in ' + suite + '...')
old[suite] = scheduler_old_versions(suite, suite_many_old)
total += len(old[suite])