Module: tools Branch: master Commit: 78438766b145a044e3015c4abda0628867e3faf6 URL: https://source.winehq.org/git/tools.git/?a=commit;h=78438766b145a044e3015c4a...
Author: Francois Gouget fgouget@codeweavers.com Date: Wed Feb 5 13:57:26 2020 +0100
testbot: Increase the Windows executable build timeout.
configure now takes 45 to 60 seconds and make 3.5 minutes for a full build.
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 d59233f..ea08aa0 100644 --- a/testbot/lib/WineTestBot/Config.pm +++ b/testbot/lib/WineTestBot/Config.pm @@ -110,8 +110,8 @@ $MaxTaskTries = 3;
# Exe build timeouts (in seconds) # - For a full build -$ExeBuildNativeTimeout = 60; -$ExeBuildTestTimeout = 4 * 60; +$ExeBuildNativeTimeout = 2 * 60; +$ExeBuildTestTimeout = 7 * 60; # - For a single module $ExeModuleTimeout = 30;