summaryrefslogtreecommitdiffstats
path: root/bin/reproducible_scheduler.py
diff options
context:
space:
mode:
authorHolger Levsen <holger@layer-acht.org>2015-08-02 12:08:59 +0200
committerHolger Levsen <holger@layer-acht.org>2015-08-02 12:08:59 +0200
commitd7ce3cafc8b27fb8a20e3767bae111ad02bad348 (patch)
tree311d6176afe0e367afac799b14636379501025ab /bin/reproducible_scheduler.py
parent48479f9a3fdf5aaa6b757b08160d862fc1ff44c5 (diff)
downloadjenkins.debian.net-d7ce3cafc8b27fb8a20e3767bae111ad02bad348.tar.xz
reproducible: schedule stretch way more often than sid, now that we are in the middle of the gcc5 transition...
Diffstat (limited to 'bin/reproducible_scheduler.py')
-rwxr-xr-xbin/reproducible_scheduler.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/reproducible_scheduler.py b/bin/reproducible_scheduler.py
index a492d017..d7b60095 100755
--- a/bin/reproducible_scheduler.py
+++ b/bin/reproducible_scheduler.py
@@ -318,9 +318,9 @@ def schedule_old_versions(total):
many_old_base = 0 # ...
for suite in SUITES:
if suite == 'unstable':
- suite_many_old = int(many_old_base*20) # unstable changes the most and is most relevant
+ suite_many_old = int(many_old_base*5) # unstable changes the most and is most relevant ### was 20, lowered due to gcc5 transition
elif suite == 'testing':
- suite_many_old = int(many_old_base*10) # re-schedule testing less than unstable as we care more more about unstable (atm)
+ suite_many_old = int(many_old_base*25) # re-schedule testing less than unstable as we care more more about unstable (atm) ### was 10, raised due to gcc5...
else:
suite_many_old = int(many_old_base) # experimental is roughly one twentieth of the size of the other suites
log.info('Requesting ' + str(suite_many_old) + ' old packages in ' + suite + '...')