mirror of
git://git.yoctoproject.org/yocto-autobuilder2.git
synced 2025-07-19 20:59:02 +02:00
builders: increase timeout for run-config invocations
run-config can run without producing output for longer than the default 1200s/20m timeout value. Increase the timeout to a generous 16200s/4.5h in order to give the script plenty of time to run. Signed-off-by: Joshua Lock <joshua.g.lock@intel.com>
This commit is contained in:
parent
6356e5553a
commit
37a42c46fd
|
@ -70,7 +70,8 @@ def create_builder_factory():
|
||||||
util.Interpolate("%(prop:buildappsrcrev)s"),
|
util.Interpolate("%(prop:buildappsrcrev)s"),
|
||||||
get_publish_dest(),
|
get_publish_dest(),
|
||||||
util.URLForBuild],
|
util.URLForBuild],
|
||||||
name="run-config"))
|
name="run-config",
|
||||||
|
timeout=16200)) # default of 1200s/20min is too short, use 4.5hrs
|
||||||
return f
|
return f
|
||||||
|
|
||||||
|
|
||||||
|
@ -131,7 +132,8 @@ factory.addStep(steps.ShellCommand(
|
||||||
"None",
|
"None",
|
||||||
get_publish_dest(),
|
get_publish_dest(),
|
||||||
util.URLForBuild],
|
util.URLForBuild],
|
||||||
name="run-config"))
|
name="run-config",
|
||||||
|
timeout=16200)) # default of 1200s/20min is too short, use 4.5hrs
|
||||||
|
|
||||||
# trigger the buildsets contained in the nightly set
|
# trigger the buildsets contained in the nightly set
|
||||||
set_props = {
|
set_props = {
|
||||||
|
|
Loading…
Reference in New Issue
Block a user