diff options
author | Holger Levsen <holger@layer-acht.org> | 2016-01-11 19:57:32 +0100 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2016-01-11 19:57:32 +0100 |
commit | 56ee74bde84b89834b6be8ed03d590d8367ff01b (patch) | |
tree | ccff7ba0a88b9b9314d12ea1179478ba73e61ca2 /bin | |
parent | a7cdb63f623cd848a7fec33550ece232caba72f0 (diff) | |
download | jenkins.debian.net-56ee74bde84b89834b6be8ed03d590d8367ff01b.tar.xz |
reproducible armhf: try to schedule known old packages again
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/reproducible_scheduler.py | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/bin/reproducible_scheduler.py b/bin/reproducible_scheduler.py index b5f4f28f..293b0f92 100755 --- a/bin/reproducible_scheduler.py +++ b/bin/reproducible_scheduler.py @@ -71,9 +71,9 @@ LIMITS = { 'experimental': {'*': 440}, }, 'armhf': { - 'testing': {'*': 175}, - 'unstable': {'*': 175}, - 'experimental': {'*': 175}, + 'testing': {'*': 150}, + 'unstable': {'*': 150}, + 'experimental': {'*': 150}, }, }, 'new': { @@ -107,15 +107,15 @@ LIMITS = { 'experimental': {1: (300, 70), 2: (500, 50), '*': 0}, }, 'armhf': { - 'testing': {1: (300, 200), 2: (500, 125), '*': 0}, - 'unstable': {1: (300, 200), 2: (500, 125), '*': 0}, - 'experimental': {1: (300, 30), 2: (500, 15), '*': 0}, + 'testing': {1: (300, 200), 2: (600, 125), '*': 0}, + 'unstable': {1: (300, 200), 2: (600, 125), '*': 0}, + 'experimental': {1: (300, 30), 2: (600, 15), '*': 0}, } } } # only old packages older than this will be rescheduled -MINIMUM_AGE = {'amd64': 7, 'armhf': 42} +MINIMUM_AGE = {'amd64': 7, 'armhf': 28} class Limit: |