diff options
author | Holger Levsen <holger@layer-acht.org> | 2017-05-01 18:12:38 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2017-05-01 18:12:38 +0200 |
commit | 887944e3be97a257a960a3079180e136418073c4 (patch) | |
tree | 050b903800a0b5e8f352a89cb811775c337f4a00 /bin | |
parent | 5277d978c9f7e8179320875ea5b76db80ef4f5a4 (diff) | |
download | jenkins.debian.net-887944e3be97a257a960a3079180e136418073c4.tar.xz |
reproducible Debian: lower maximum amounts of new packages being scheduled (hoping this speeds up things a bit)
Signed-off-by: Holger Levsen <holger@layer-acht.org>
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/reproducible_scheduler.py | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/bin/reproducible_scheduler.py b/bin/reproducible_scheduler.py index afb6020a..21bfdf0f 100755 --- a/bin/reproducible_scheduler.py +++ b/bin/reproducible_scheduler.py @@ -71,24 +71,24 @@ MAXIMA = {'amd64': 750, 'i386': 750, 'arm64': 1000, 'armhf': 750} LIMITS = { 'untested': { 'amd64': { - 'testing': {'*': 600}, - 'unstable': {'*': 600}, - 'experimental': {'*': 440}, + 'testing': {'*': 100}, + 'unstable': {'*': 100}, + 'experimental': {'*': 100}, }, 'i386': { - 'testing': {'*': 440}, - 'unstable': {'*': 440}, - 'experimental': {'*': 440}, + 'testing': {'*': 100}, + 'unstable': {'*': 100}, + 'experimental': {'*': 100}, }, 'arm64': { - 'testing': {'*': 660}, - 'unstable': {'*': 660}, - 'experimental': {'*': 440}, + 'testing': {'*': 100}, + 'unstable': {'*': 100}, + 'experimental': {'*': 100}, }, 'armhf': { - 'testing': {'*': 440}, - 'unstable': {'*': 440}, - 'experimental': {'*': 440}, + 'testing': {'*': 100}, + 'unstable': {'*': 100}, + 'experimental': {'*': 100}, }, }, 'new': { |