diff options
author | Holger Levsen <holger@layer-acht.org> | 2015-08-06 21:24:00 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-08-06 21:24:00 +0200 |
commit | 3364bd3fae718849a9cac881fd8d66db47794aae (patch) | |
tree | f3c04a7374ae0b7f296c19fb61e784868a944598 /bin | |
parent | 666df0076de495f2e523e3e35a38487e59a54b9b (diff) | |
download | jenkins.debian.net-3364bd3fae718849a9cac881fd8d66db47794aae.tar.xz |
reproducible: disable rescheduling of already tested packages for sid and experimental due to gcc5 transition + aptitude breakage
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/reproducible_scheduler.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/reproducible_scheduler.py b/bin/reproducible_scheduler.py index 7b3a29a3..db73344c 100755 --- a/bin/reproducible_scheduler.py +++ b/bin/reproducible_scheduler.py @@ -318,11 +318,11 @@ def schedule_old_versions(total): many_old_base = 0 # ... for suite in SUITES: if suite == 'unstable': - suite_many_old = int(many_old_base*5) # unstable changes the most and is most relevant ### was 20, lowered due to gcc5 transition + suite_many_old = int(many_old_base*0) # unstable changes the most and is most relevant ### was 20, set to 0 due to gcc5 transition elif suite == 'testing': 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 + suite_many_old = 0 # set to 0 due to gcc5 transition # 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 + '...') packages[suite] = query_old_versions(suite, suite_many_old) log.info('Received ' + str(len(packages[suite])) + ' old packages in ' + suite + ' to schedule.') |