From 24f64e24f22bc93ccf3f4889a6a5427eea863fdb Mon Sep 17 00:00:00 2001 From: Andrei Yankovich <EndrIIMail@gmail.com> Date: Wed, 18 Sep 2019 14:51:07 +0300 Subject: [PATCH] Update qtUpdater.py --- BuildBotLib/qtUpdater.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/BuildBotLib/qtUpdater.py b/BuildBotLib/qtUpdater.py index ac208d8..f774fef 100644 --- a/BuildBotLib/qtUpdater.py +++ b/BuildBotLib/qtUpdater.py @@ -223,7 +223,7 @@ def windowsSteps(): command = ['make', 'install', '-j2'], name = 'Install Qt for Windows', haltOnFailure = True, - timeout = 3600, + timeout = 360000, doStepIf = lambda step : isWin(step) and not isConfigureonly(step), description = 'run make for project', @@ -283,7 +283,7 @@ def linuxSteps(): command = base.makeCommand, name = 'Build Qt for Linux', haltOnFailure = True, - timeout = 3600, + timeout = 360000, doStepIf = lambda step : isLinux(step) and not isConfigureonly(step), description = 'run make for project', @@ -345,7 +345,7 @@ def androidSteps(): command = base.makeCommand, name = 'Build Qt for Android', haltOnFailure = True, - timeout = 3600, + timeout = 360000, doStepIf = lambda step : isAndroid(step) and not isConfigureonly(step), description = 'run make for project',