summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMattia Rizzolo <mattia@mapreri.org>2015-08-15 11:08:23 +0000
committerMattia Rizzolo <mattia@mapreri.org>2015-08-15 11:08:23 +0000
commit38ba88cb4f0b1e3ac38939a0b4d83ebe4ffab636 (patch)
tree5b49f76d394876123d38182d29f428191b4ef473
parent8437d0cabef29be4bac2fbca3648b5b58aa50371 (diff)
downloadjenkins.debian.net-38ba88cb4f0b1e3ac38939a0b4d83ebe4ffab636.tar.xz
reproducible: scheduler: only schedule packages in unstable for armhf
-rwxr-xr-xbin/reproducible_scheduler.py16
1 files changed, 8 insertions, 8 deletions
diff --git a/bin/reproducible_scheduler.py b/bin/reproducible_scheduler.py
index e9943529..3e57eb0c 100755
--- a/bin/reproducible_scheduler.py
+++ b/bin/reproducible_scheduler.py
@@ -35,9 +35,9 @@ LIMITS = {
'experimental': {'*': 44},
},
'armhf': {
- 'testing': {'*': 44},
+ 'testing': {'*': 0},
'unstable': {'*': 44},
- 'experimental': {'*': 44},
+ 'experimental': {'*': 0},
},
},
'new': {
@@ -47,9 +47,9 @@ LIMITS = {
'experimental': {1: (100, 25), 2: (200, 20), '*': 15},
},
'armhf': {
- 'testing': {1: (100, 25), 2: (200, 20), '*': 15},
+ 'testing': {1: (100, 0), 2: (200, 0), '*': 0},
'unstable': {1: (100, 25), 2: (200, 20), '*': 15},
- 'experimental': {1: (100, 25), 2: (200, 20), '*': 15},
+ 'experimental': {1: (100, 0), 2: (200, 0), '*': 0},
},
},
'ftbfs': {
@@ -59,9 +59,9 @@ LIMITS = {
'experimental': {1: (250, 4), 2: (350, 2), '*': 0},
},
'armhf': {
- 'testing': {1: (250, 4), 2: (350, 2), '*': 0},
+ 'testing': {1: (250, 0), 2: (350, 0), '*': 0},
'unstable': {1: (250, 4), 2: (350, 2), '*': 0},
- 'experimental': {1: (250, 4), 2: (350, 2), '*': 0},
+ 'experimental': {1: (250, 0), 2: (350, 0), '*': 0},
}
},
'old': {
@@ -71,9 +71,9 @@ LIMITS = {
'experimental': {1: (300, 3.5), 2: (400, 2.5), '*': 0},
},
'armhf': {
- 'testing': {1: (300, 87.5), 2: (400, 62.5), '*': 0},
+ 'testing': {1: (300, 0), 2: (400, 0), '*': 0},
'unstable': {1: (300, 17.5), 2: (400, 12.5), '*': 0},
- 'experimental': {1: (300, 3.5), 2: (400, 2.5), '*': 0},
+ 'experimental': {1: (300, 0), 2: (400, 0), '*': 0},
}
}
}