From c216cd409e34c2b878509c942ce5d92531e3fd4d Mon Sep 17 00:00:00 2001 From: Holger Levsen Date: Tue, 20 Jun 2017 16:32:55 +0200 Subject: reproducible Debian: increase scheduling limits, especially for untested, new and depwait packages Signed-off-by: Holger Levsen --- bin/reproducible_scheduler.py | 128 +++++++++++++++++++++--------------------- 1 file changed, 64 insertions(+), 64 deletions(-) diff --git a/bin/reproducible_scheduler.py b/bin/reproducible_scheduler.py index 44e40092..7487b20a 100755 --- a/bin/reproducible_scheduler.py +++ b/bin/reproducible_scheduler.py @@ -71,106 +71,106 @@ MAXIMA = {'amd64': 1600, 'i386': 1500, 'arm64': 1500, 'armhf': 1000} LIMITS = { 'untested': { 'amd64': { - 'stretch': {'*': 100}, - 'buster': {'*': 100}, - 'unstable': {'*': 100}, - 'experimental': {'*': 100}, + 'stretch': {'*': 255}, + 'buster': {'*': 255}, + 'unstable': {'*': 255}, + 'experimental': {'*': 255}, }, 'i386': { - 'stretch': {'*': 100}, - 'buster': {'*': 100}, - 'unstable': {'*': 100}, - 'experimental': {'*': 100}, + 'stretch': {'*': 255}, + 'buster': {'*': 255}, + 'unstable': {'*': 255}, + 'experimental': {'*': 255}, }, 'arm64': { - 'stretch': {'*': 100}, - 'buster': {'*': 100}, - 'unstable': {'*': 100}, - 'experimental': {'*': 100}, + 'stretch': {'*': 255}, + 'buster': {'*': 255}, + 'unstable': {'*': 255}, + 'experimental': {'*': 255}, }, 'armhf': { - 'stretch': {'*': 100}, - 'buster': {'*': 100}, - 'unstable': {'*': 100}, - 'experimental': {'*': 100}, + 'stretch': {'*': 255}, + 'buster': {'*': 255}, + 'unstable': {'*': 255}, + 'experimental': {'*': 255}, }, }, 'new': { 'amd64': { - 'stretch': {1: (100, 250), 2: (200, 200), '*': 100}, - 'buster': {1: (100, 250), 2: (200, 200), '*': 100}, - 'unstable': {1: (100, 250), 2: (200, 200), '*': 150}, - 'experimental': {1: (100, 250), 2: (200, 200), '*': 50}, + 'stretch': {1: (700, 500), 2: (1100, 750), '*': 100}, + 'buster': {1: (700, 500), 2: (1100, 750), '*': 100}, + 'unstable': {1: (700, 500), 2: (1100, 750), '*': 150}, + 'experimental': {1: (700, 500), 2: (1100, 750), '*': 50}, }, 'i386': { - 'stretch': {1: (100, 250), 2: (200, 200), '*': 100}, - 'buster': {1: (100, 250), 2: (200, 200), '*': 100}, - 'unstable': {1: (100, 250), 2: (200, 200), '*': 150}, - 'experimental': {1: (100, 250), 2: (200, 200), '*': 50}, + 'stretch': {1: (700, 500), 2: (1100, 750), '*': 100}, + 'buster': {1: (700, 500), 2: (1100, 750), '*': 100}, + 'unstable': {1: (700, 500), 2: (1100, 750), '*': 150}, + 'experimental': {1: (700, 500), 2: (1100, 750), '*': 50}, }, 'arm64': { - 'stretch': {1: (100, 250), 2: (200, 200), '*': 50}, - 'buster': {1: (100, 250), 2: (200, 200), '*': 50}, - 'unstable': {1: (100, 250), 2: (200, 200), '*': 75}, - 'experimental': {1: (100, 200), 2: (200, 200), '*': 25}, + 'stretch': {1: (700, 500), 2: (1100, 750), '*': 50}, + 'buster': {1: (700, 500), 2: (1100, 750), '*': 50}, + 'unstable': {1: (700, 500), 2: (1100, 750), '*': 75}, + 'experimental': {1: (700, 500), 2: (1100, 750), '*': 25}, }, 'armhf': { - 'stretch': {1: (100, 200), 2: (200, 200), '*': 50}, - 'buster': {1: (100, 200), 2: (200, 200), '*': 50}, - 'unstable': {1: (100, 200), 2: (200, 200), '*': 75}, - 'experimental': {1: (100, 200), 2: (200, 200), '*': 25}, + 'stretch': {1: (600, 400), 2: (850, 600), '*': 50}, + 'buster': {1: (600, 400), 2: (850, 600), '*': 50}, + 'unstable': {1: (600, 400), 2: (850, 600), '*': 75}, + 'experimental': {1: (600, 400), 2: (850, 600), '*': 25}, }, }, 'ftbfs': { 'amd64': { - 'stretch': {1: (700, 40), 2: (500, 20), '*': 5}, - 'buster': {1: (700, 40), 2: (500, 20), '*': 5}, - 'unstable': {1: (700, 40), 2: (500, 20), '*': 5}, - 'experimental': {1: (700, 40), 2: (500, 20), '*': 2}, + 'stretch': {1: (700, 40), 2: (1100, 20), '*': 5}, + 'buster': {1: (700, 40), 2: (1100, 20), '*': 5}, + 'unstable': {1: (700, 40), 2: (1100, 20), '*': 5}, + 'experimental': {1: (700, 40), 2: (1100, 20), '*': 2}, }, 'i386': { - 'stretch': {1: (700, 40), 2: (500, 20), '*': 5}, - 'buster': {1: (700, 40), 2: (500, 20), '*': 5}, - 'unstable': {1: (700, 40), 2: (500, 20), '*': 5}, - 'experimental': {1: (700, 40), 2: (500, 20), '*': 2}, + 'stretch': {1: (700, 40), 2: (1100, 20), '*': 5}, + 'buster': {1: (700, 40), 2: (1100, 20), '*': 5}, + 'unstable': {1: (700, 40), 2: (1100, 20), '*': 5}, + 'experimental': {1: (700, 40), 2: (1100, 20), '*': 2}, }, 'arm64': { - 'stretch': {1: (700, 40), 2: (500, 20), '*': 5}, - 'buster': {1: (700, 40), 2: (500, 20), '*': 5}, - 'unstable': {1: (700, 40), 2: (500, 20), '*': 5}, - 'experimental': {1: (700, 40), 2: (500, 20), '*': 2}, + 'stretch': {1: (700, 40), 2: (1100, 20), '*': 5}, + 'buster': {1: (700, 40), 2: (1100, 20), '*': 5}, + 'unstable': {1: (700, 40), 2: (1100, 20), '*': 5}, + 'experimental': {1: (700, 40), 2: (1100, 20), '*': 2}, }, 'armhf': { - 'stretch': {1: (575, 20), 2: (450, 10), '*': 5}, - 'buster': {1: (575, 20), 2: (450, 10), '*': 5}, - 'unstable': {1: (575, 20), 2: (450, 10), '*': 5}, - 'experimental': {1: (575, 20), 2: (450, 10), '*': 2}, + 'stretch': {1: (600, 20), 2: (850, 10), '*': 5}, + 'buster': {1: (600, 20), 2: (850, 10), '*': 5}, + 'unstable': {1: (600, 20), 2: (850, 10), '*': 5}, + 'experimental': {1: (600, 20), 2: (850, 10), '*': 2}, } }, 'depwait': { 'amd64': { - 'stretch': {1: (700, 400), 2: (500, 200), '*': 50}, - 'buster': {1: (700, 400), 2: (500, 200), '*': 50}, - 'unstable': {1: (700, 400), 2: (500, 200), '*': 50}, - 'experimental': {1: (700, 400), 2: (500, 200), '*': 20}, + 'stretch': {1: (700, 400), 2: (1100, 200), '*': 50}, + 'buster': {1: (700, 400), 2: (1100, 200), '*': 50}, + 'unstable': {1: (700, 400), 2: (1100, 200), '*': 50}, + 'experimental': {1: (700, 400), 2: (1100, 200), '*': 20}, }, 'i386': { - 'stretch': {1: (700, 400), 2: (500, 200), '*': 50}, - 'buster': {1: (700, 400), 2: (500, 200), '*': 50}, - 'unstable': {1: (700, 400), 2: (500, 200), '*': 50}, - 'experimental': {1: (700, 400), 2: (500, 200), '*': 20}, + 'stretch': {1: (700, 400), 2: (1100, 200), '*': 50}, + 'buster': {1: (700, 400), 2: (1100, 200), '*': 50}, + 'unstable': {1: (700, 400), 2: (1100, 200), '*': 50}, + 'experimental': {1: (700, 400), 2: (1100, 200), '*': 20}, }, 'arm64': { - 'stretch': {1: (700, 400), 2: (500, 200), '*': 50}, - 'buster': {1: (700, 400), 2: (500, 200), '*': 50}, - 'unstable': {1: (700, 400), 2: (500, 200), '*': 50}, - 'experimental': {1: (700, 400), 2: (500, 200), '*': 20}, + 'stretch': {1: (700, 400), 2: (1100, 200), '*': 50}, + 'buster': {1: (700, 400), 2: (1100, 200), '*': 50}, + 'unstable': {1: (700, 400), 2: (1100, 200), '*': 50}, + 'experimental': {1: (700, 400), 2: (1100, 200), '*': 20}, }, 'armhf': { - 'stretch': {1: (575, 200), 2: (450, 100), '*': 50}, - 'buster': {1: (575, 200), 2: (450, 100), '*': 50}, - 'unstable': {1: (575, 200), 2: (450, 100), '*': 50}, - 'experimental': {1: (575, 200), 2: (450, 100), '*': 20}, + 'stretch': {1: (600, 200), 2: (850, 100), '*': 50}, + 'buster': {1: (600, 200), 2: (850, 100), '*': 50}, + 'unstable': {1: (600, 200), 2: (850, 100), '*': 50}, + 'experimental': {1: (600, 200), 2: (850, 100), '*': 20}, } }, 'old': { -- cgit v1.2.3-54-g00ecf