summaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
authorHolger Levsen <holger@layer-acht.org>2016-01-13 12:37:33 +0100
committerHolger Levsen <holger@layer-acht.org>2016-01-13 23:58:43 +0100
commitd899a7039d52f223cf659b43cffcd59c3e618dda (patch)
tree67c44d0a7050d3ff1d881ba24076d2ec648445d4 /bin
parent65e260aa8ac1f871ecc932a36494b4b1002c5b3b (diff)
downloadjenkins.debian.net-d899a7039d52f223cf659b43cffcd59c3e618dda.tar.xz
reproducible: completly stop scheduling testing for now
Diffstat (limited to 'bin')
-rwxr-xr-xbin/reproducible_scheduler.py16
1 files changed, 10 insertions, 6 deletions
diff --git a/bin/reproducible_scheduler.py b/bin/reproducible_scheduler.py
index e6c72d59..45d638fd 100755
--- a/bin/reproducible_scheduler.py
+++ b/bin/reproducible_scheduler.py
@@ -66,19 +66,19 @@ MAXIMA = {'amd64': 750, 'armhf': 600}
LIMITS = {
'untested': {
'amd64': {
- 'testing': {'*': 440},
+ 'testing': {'*': 0},
'unstable': {'*': 440},
'experimental': {'*': 440},
},
'armhf': {
- 'testing': {'*': 177},
+ 'testing': {'*': 0},
'unstable': {'*': 177},
'experimental': {'*': 177},
},
},
'new': {
'amd64': {
- 'testing': {1: (100, 250), 2: (200, 200), '*': 0},
+ '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: (500, 666), '*': 0},
+ 'testing': {1: (300, 0), 2: (500, 0), '*': 0},
'unstable': {1: (300, 1000), 2: (500, 888), '*': 0},
'experimental': {1: (300, 70), 2: (500, 50), '*': 0},
},
@@ -478,7 +478,11 @@ def schedule_404_versions(arch, total):
log.info('Requesting 404 packages in %s/%s...',
suite, arch)
# hard code the limit to 42 as 404s rarely happen anyway
- packages[suite] = query_404_versions(suite, arch, 42)
+ if suite != 'testing':
+ temp_limit = 42
+ else
+ temp_limit = 0
+ packages[suite] = query_404_versions(suite, arch, temp_limit)
log.info('Received ' + str(len(packages[suite])) +
' 404 packages in ' + suite + '/' + arch + ' to schedule.')
log.info('--------------------------------------------------------------')