Module: tools Branch: master Commit: 82a3c95a36e428b04a2c4142efdee85ae0cc98dc URL: https://source.winehq.org/git/tools.git/?a=commit;h=82a3c95a36e428b04a2c4142...
Author: Francois Gouget fgouget@codeweavers.com Date: Mon Sep 24 12:41:35 2018 +0200
testbot: Increase the full rebuild timeouts.
The increased timeouts can be needed if the computer is otherwise busy (which should not be happening on the official TestBot unless the administrator is doing some maintenance on the side). The new timeouts should provide at least a 50% margin, thus also leaving some room for Wine to grow.
Signed-off-by: Francois Gouget fgouget@codeweavers.com Signed-off-by: Alexandre Julliard julliard@winehq.org
---
testbot/lib/WineTestBot/Config.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/testbot/lib/WineTestBot/Config.pm b/testbot/lib/WineTestBot/Config.pm index a83085d..1576177 100644 --- a/testbot/lib/WineTestBot/Config.pm +++ b/testbot/lib/WineTestBot/Config.pm @@ -95,13 +95,13 @@ $MaxTaskTries = 3; # Exe build timeouts (in seconds) # - For a full build $ExeBuildNativeTimeout = 60; -$ExeBuildTestTimeout = 2 * 60; +$ExeBuildTestTimeout = 4 * 60; # - For a single module $ExeModuleTimeout = 30;
# Wine build timeouts (in seconds) # - For a full build -$WineBuildTimeout = 20 * 60; +$WineBuildTimeout = 25 * 60; # - For a single module $WineModuleTimeout = 60;