summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHolger Levsen <holger@layer-acht.org>2016-01-09 11:33:16 +0100
committerHolger Levsen <holger@layer-acht.org>2016-01-09 11:33:16 +0100
commit32b9be7509b1d8b7860d99b812dae6e4943d4d9c (patch)
tree94168c0da162c3cf6f8090d832c9989da9badc5f
parent8738fdf9d5e2fcb0da85d9471b3ce04e95171cff (diff)
downloadjenkins.debian.net-32b9be7509b1d8b7860d99b812dae6e4943d4d9c.tar.xz
reproducible armhf: tune scheduling limits
-rwxr-xr-xbin/reproducible_scheduler.py18
1 files changed, 9 insertions, 9 deletions
diff --git a/bin/reproducible_scheduler.py b/bin/reproducible_scheduler.py
index 66a73656..414e4745 100755
--- a/bin/reproducible_scheduler.py
+++ b/bin/reproducible_scheduler.py
@@ -71,9 +71,9 @@ LIMITS = {
'experimental': {'*': 440},
},
'armhf': {
- 'testing': {'*': 250},
- 'unstable': {'*': 250},
- 'experimental': {'*': 250},
+ 'testing': {'*': 200},
+ 'unstable': {'*': 200},
+ 'experimental': {'*': 200},
},
},
'new': {
@@ -102,14 +102,14 @@ LIMITS = {
},
'old': {
'amd64': {
- 'testing': {1: (300, 800), 2: (400, 666), '*': 0},
- 'unstable': {1: (300, 1000), 2: (400, 888), '*': 0},
- 'experimental': {1: (300, 70), 2: (400, 50), '*': 0},
+ 'testing': {1: (300, 800), 2: (500, 666), '*': 0},
+ 'unstable': {1: (300, 1000), 2: (500, 888), '*': 0},
+ 'experimental': {1: (300, 70), 2: (500, 50), '*': 0},
},
'armhf': {
- 'testing': {1: (300, 200), 2: (400, 125), '*': 0},
- 'unstable': {1: (300, 200), 2: (400, 125), '*': 0},
- 'experimental': {1: (300, 30), 2: (400, 15), '*': 0},
+ 'testing': {1: (300, 200), 2: (500, 125), '*': 0},
+ 'unstable': {1: (300, 200), 2: (500, 125), '*': 0},
+ 'experimental': {1: (300, 30), 2: (500, 15), '*': 0},
}
}
}