diff options
author | Holger Levsen <holger@layer-acht.org> | 2017-06-19 14:40:32 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2017-06-19 14:40:32 +0200 |
commit | ba966d2514f68c48c5c189c2bb5190dda9da2554 (patch) | |
tree | 991f0b2b4311a3ae3565db6d5a4feda07af16d17 /bin | |
parent | c4e208ab523fedb9f7ed5f76f1c5d80fbf3e33e9 (diff) | |
download | jenkins.debian.net-ba966d2514f68c48c5c189c2bb5190dda9da2554.tar.xz |
reproducible Debian: (almost) stop scheduling old packages in stretch
Signed-off-by: Holger Levsen <holger@layer-acht.org>
Diffstat (limited to 'bin')
-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 686db7e8..44e40092 100755 --- a/bin/reproducible_scheduler.py +++ b/bin/reproducible_scheduler.py @@ -175,25 +175,25 @@ LIMITS = { }, 'old': { 'amd64': { - 'stretch': {1: (700, 1000), 2: (1100, 850), '*': 0}, + 'stretch': {1: (700, 100), 2: (1100, 85), '*': 0}, 'buster': {1: (700, 1000), 2: (1100, 850), '*': 0}, 'unstable': {1: (700, 1200), 2: (1100, 1050), '*': 0}, 'experimental': {1: (700, 70), 2: (1100, 50), '*': 0}, }, 'i386': { - 'stretch': {1: (700, 1000), 2: (1100, 850), '*': 0}, + 'stretch': {1: (700, 100), 2: (1100, 85), '*': 0}, 'buster': {1: (700, 1000), 2: (1100, 850), '*': 0}, 'unstable': {1: (700, 1200), 2: (1100, 1050), '*': 0}, 'experimental': {1: (700, 70), 2: (1100, 50), '*': 0}, }, 'arm64': { - 'stretch': {1: (700, 1000), 2: (1100, 850), '*': 0}, + 'stretch': {1: (700, 100), 2: (1100, 85), '*': 0}, 'buster': {1: (700, 1000), 2: (1100, 850), '*': 0}, 'unstable': {1: (700, 1200), 2: (1100, 1050), '*': 0}, 'experimental': {1: (700, 70), 2: (1100, 50), '*': 0}, }, 'armhf': { - 'stretch': {1: (600, 800), 2: (850, 500), '*': 0}, + 'stretch': {1: (600, 80), 2: (850, 50), '*': 0}, 'buster': {1: (600, 800), 2: (850, 500), '*': 0}, 'unstable': {1: (600, 1000), 2: (850, 700), '*': 0}, 'experimental': {1: (600, 70), 2: (850, 50), '*': 0}, |