diff options
author | Holger Levsen <holger@layer-acht.org> | 2016-12-20 17:08:37 +0100 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2016-12-20 17:08:37 +0100 |
commit | 48d9eb69dd9d76eb2cbbab3182b549bad04a6504 (patch) | |
tree | 0305c44a88e35086e13be55755512e8208fb6230 | |
parent | 49bbe18b3ed55dbe85689341733182f998070c0a (diff) | |
download | jenkins.debian.net-48d9eb69dd9d76eb2cbbab3182b549bad04a6504.tar.xz |
reproducible Debian: basically stop scheduling old packages on testing/armhf+i386 due to #846564 still affecting stretch
Signed-off-by: Holger Levsen <holger@layer-acht.org>
-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 b1721f62..f9301a6a 100755 --- a/bin/reproducible_scheduler.py +++ b/bin/reproducible_scheduler.py @@ -144,12 +144,12 @@ LIMITS = { 'experimental': {1: (300, 70), 2: (500, 50), '*': 0}, }, 'i386': { - 'testing': {1: (300, 800), 2: (500, 500), '*': 0}, + 'testing': {1: (300, 8), 2: (500, 5), '*': 0}, 'unstable': {1: (300, 800), 2: (500, 500), '*': 0}, 'experimental': {1: (300, 70), 2: (500, 50), '*': 0}, }, 'armhf': { - 'testing': {1: (300, 800), 2: (500, 500), '*': 0}, + 'testing': {1: (300, 8), 2: (500, 5), '*': 0}, 'unstable': {1: (300, 800), 2: (500, 500), '*': 0}, 'experimental': {1: (300, 70), 2: (500, 50), '*': 0}, } |