summaryrefslogtreecommitdiffstats
path: root/bin/reproducible_scheduler.py
diff options
context:
space:
mode:
authorHolger Levsen <holger@layer-acht.org>2016-12-23 03:14:15 +0100
committerHolger Levsen <holger@layer-acht.org>2016-12-23 10:51:25 +0100
commitd3cfdf5d361a98a6c78d0513f71f3132e6de162e (patch)
treedd9953b1f61573874e9a21a6f9172c3cd326b2ad /bin/reproducible_scheduler.py
parent0dc6573d34cc7130eded296155624b5eb07b5467 (diff)
downloadjenkins.debian.net-d3cfdf5d361a98a6c78d0513f71f3132e6de162e.tar.xz
reproducible Debian: enable arm64 scheduler
Signed-off-by: Holger Levsen <holger@layer-acht.org>
Diffstat (limited to 'bin/reproducible_scheduler.py')
-rwxr-xr-xbin/reproducible_scheduler.py29
1 files changed, 27 insertions, 2 deletions
diff --git a/bin/reproducible_scheduler.py b/bin/reproducible_scheduler.py
index f9301a6a..25039332 100755
--- a/bin/reproducible_scheduler.py
+++ b/bin/reproducible_scheduler.py
@@ -64,9 +64,9 @@ LIMITS_404 defines how many packages with status 404 are rescheduled at max.
"""
# only old packages older than this will be rescheduled
-MINIMUM_AGE = {'amd64': 20, 'i386': 30, 'armhf': 30}
+MINIMUM_AGE = {'amd64': 20, 'i386': 30, 'arm64': 42, 'armhf':30 }
# maximum queue size, see explainations above
-MAXIMA = {'amd64': 750, 'i386': 750, 'armhf': 750}
+MAXIMA = {'amd64': 750, 'i386': 750, 'arm64': 750, 'armhf': 750}
# limits, see explainations above
LIMITS = {
'untested': {
@@ -80,6 +80,11 @@ LIMITS = {
'unstable': {'*': 440},
'experimental': {'*': 440},
},
+ 'arm64': {
+ 'testing': {'*': 440},
+ 'unstable': {'*': 440},
+ 'experimental': {'*': 440},
+ },
'armhf': {
'testing': {'*': 440},
'unstable': {'*': 440},
@@ -97,6 +102,11 @@ LIMITS = {
'unstable': {1: (100, 250), 2: (200, 200), '*': 150},
'experimental': {1: (100, 250), 2: (200, 200), '*': 50},
},
+ 'arm64': {
+ 'testing': {1: (100, 200), 2: (200, 200), '*': 50},
+ 'unstable': {1: (100, 200), 2: (200, 200), '*': 75},
+ 'experimental': {1: (100, 200), 2: (200, 200), '*': 25},
+ },
'armhf': {
'testing': {1: (100, 200), 2: (200, 200), '*': 50},
'unstable': {1: (100, 200), 2: (200, 200), '*': 75},
@@ -114,6 +124,11 @@ LIMITS = {
'unstable': {1: (700, 40), 2: (500, 20), '*': 5},
'experimental': {1: (700, 40), 2: (500, 20), '*': 2},
},
+ 'arm64': {
+ 'testing': {1: (575, 20), 2: (450, 10), '*': 5},
+ 'unstable': {1: (575, 20), 2: (450, 10), '*': 5},
+ 'experimental': {1: (575, 20), 2: (450, 10), '*': 2},
+ }
'armhf': {
'testing': {1: (575, 20), 2: (450, 10), '*': 5},
'unstable': {1: (575, 20), 2: (450, 10), '*': 5},
@@ -131,6 +146,11 @@ LIMITS = {
'unstable': {1: (700, 400), 2: (500, 200), '*': 50},
'experimental': {1: (700, 400), 2: (500, 200), '*': 20},
},
+ 'arm64': {
+ 'testing': {1: (575, 200), 2: (450, 100), '*': 50},
+ 'unstable': {1: (575, 200), 2: (450, 100), '*': 50},
+ 'experimental': {1: (575, 200), 2: (450, 100), '*': 20},
+ }
'armhf': {
'testing': {1: (575, 200), 2: (450, 100), '*': 50},
'unstable': {1: (575, 200), 2: (450, 100), '*': 50},
@@ -148,6 +168,11 @@ LIMITS = {
'unstable': {1: (300, 800), 2: (500, 500), '*': 0},
'experimental': {1: (300, 70), 2: (500, 50), '*': 0},
},
+ 'arm64': {
+ '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, 8), 2: (500, 5), '*': 0},
'unstable': {1: (300, 800), 2: (500, 500), '*': 0},