diff options
author | Holger Levsen <holger@layer-acht.org> | 2016-02-14 10:13:48 +0100 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2016-02-14 10:13:48 +0100 |
commit | 2b3332a45fc2d05c386fa3ac0629917e6fc18dd0 (patch) | |
tree | 4dbee4bcd021d73bb98b7204881a83333ab31e01 | |
parent | 7608504667d2da7edd810e027df8bed12a6e53e2 (diff) | |
download | jenkins.debian.net-2b3332a45fc2d05c386fa3ac0629917e6fc18dd0.tar.xz |
reproducible debian: always schedule new versions and some ftbfs and depwait
-rwxr-xr-x | bin/reproducible_scheduler.py | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/bin/reproducible_scheduler.py b/bin/reproducible_scheduler.py index c2fb087b..6014c7e0 100755 --- a/bin/reproducible_scheduler.py +++ b/bin/reproducible_scheduler.py @@ -83,26 +83,26 @@ LIMITS = { }, 'new': { 'amd64': { - 'testing': {1: (100, 250), 2: (200, 200), '*': 0}, + 'testing': {1: (100, 250), 2: (200, 200), '*': 100}, 'unstable': {1: (100, 250), 2: (200, 200), '*': 150}, 'experimental': {1: (100, 250), 2: (200, 200), '*': 150}, }, 'armhf': { - 'testing': {1: (100, 200), 2: (200, 200), '*': 0}, + 'testing': {1: (100, 200), 2: (200, 200), '*': 100}, 'unstable': {1: (100, 200), 2: (200, 200), '*': 150}, 'experimental': {1: (100, 200), 2: (200, 200), '*': 150}, }, }, 'ftbfs+depwait': { 'amd64': { - 'testing': {1: (250, 40), 2: (350, 20), '*': 0}, - 'unstable': {1: (250, 40), 2: (350, 20), '*': 0}, - 'experimental': {1: (250, 40), 2: (350, 20), '*': 0}, + 'testing': {1: (250, 40), 2: (350, 20), '*': 5}, + 'unstable': {1: (250, 40), 2: (350, 20), '*': 5}, + 'experimental': {1: (250, 40), 2: (350, 20), '*': 2}, }, 'armhf': { - 'testing': {1: (250, 20), 2: (350, 10), '*': 0}, - 'unstable': {1: (250, 20), 2: (350, 10), '*': 0}, - 'experimental': {1: (250, 20), 2: (350, 10), '*': 0}, + 'testing': {1: (250, 20), 2: (350, 10), '*': 5}, + 'unstable': {1: (250, 20), 2: (350, 10), '*': 5}, + 'experimental': {1: (250, 20), 2: (350, 10), '*': 2}, } }, 'old': { |