diff options
-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': { |