diff options
author | Holger Levsen <holger@layer-acht.org> | 2015-12-17 20:21:09 +0100 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-12-17 20:21:09 +0100 |
commit | 3ba03196d99151154e50aa9a8d408985f5cd83fd (patch) | |
tree | 1477310d957856229600d1126b4b48d2c3b70213 | |
parent | c308cf255cc42fc034a2e6aeb60265908b3f9433 (diff) | |
download | jenkins.debian.net-3ba03196d99151154e50aa9a8d408985f5cd83fd.tar.xz |
reproducible debian: temporarily stop scheduling packages in testing as binutils is completly broken
-rwxr-xr-x | bin/reproducible_scheduler.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/bin/reproducible_scheduler.py b/bin/reproducible_scheduler.py index 3149cef2..e974192a 100755 --- a/bin/reproducible_scheduler.py +++ b/bin/reproducible_scheduler.py @@ -66,7 +66,7 @@ MAXIMA = {'amd64': 750, 'armhf': 250} LIMITS = { 'untested': { 'amd64': { - 'testing': {'*': 440}, + 'testing': {'*': 0}, 'unstable': {'*': 440}, 'experimental': {'*': 440}, }, @@ -78,7 +78,7 @@ LIMITS = { }, 'new': { 'amd64': { - 'testing': {1: (100, 250), 2: (200, 200), '*': 150}, + 'testing': {1: (100, 0), 2: (200, 0), '*': 0}, 'unstable': {1: (100, 250), 2: (200, 200), '*': 150}, 'experimental': {1: (100, 250), 2: (200, 200), '*': 150}, }, @@ -90,7 +90,7 @@ LIMITS = { }, 'ftbfs+depwait': { 'amd64': { - 'testing': {1: (250, 40), 2: (350, 20), '*': 0}, + 'testing': {1: (250, 0), 2: (350, 0), '*': 0}, 'unstable': {1: (250, 40), 2: (350, 20), '*': 0}, 'experimental': {1: (250, 40), 2: (350, 20), '*': 0}, }, @@ -102,7 +102,7 @@ LIMITS = { }, 'old': { 'amd64': { - 'testing': {1: (300, 800), 2: (400, 666), '*': 0}, + 'testing': {1: (300, 0), 2: (400, 0), '*': 0}, 'unstable': {1: (300, 1000), 2: (400, 888), '*': 0}, 'experimental': {1: (300, 70), 2: (400, 50), '*': 0}, }, |