Update qtUpdater.py

This commit is contained in:
Andrei Yankovich 2019-09-18 14:51:07 +03:00 committed by GitHub
parent 6f4d0052dd
commit 24f64e24f2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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',