builders: Use full option parameters to run-config for clarity

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Richard Purdie 2019-09-06 14:31:01 +01:00
parent 14046de06d
commit d87126c419

View File

@ -175,13 +175,13 @@ def create_builder_factory():
util.Interpolate("%(prop:builddir)s/build/build"),
util.Interpolate("%(prop:branch_poky)s"),
util.Interpolate("%(prop:repo_poky)s"),
"-s", get_sstate_release_number,
"-b", util.Interpolate("%(prop:buildappsrcrev)s"),
"--sstateprefix", get_sstate_release_number,
"--buildappsrcrev", util.Interpolate("%(prop:buildappsrcrev)s"),
"--build-type", util.Interpolate("%(prop:build_type)s"),
"-p", get_publish_dest,
"-u", util.URLForBuild,
"-r", get_publish_resultdir,
"-q"],
"--publish-dir", get_publish_dest,
"--build-url", util.URLForBuild,
"--results-dir", get_publish_resultdir,
"--quietlogging"],
name="run-config",
logfiles=get_buildlogs(maxsteps),
lazylogfiles=True,
@ -265,12 +265,12 @@ def create_parent_builder_factory(buildername, waitname):
util.Interpolate("%(prop:builddir)s/build/build"),
util.Interpolate("%(prop:branch_poky)s"),
util.Interpolate("%(prop:repo_poky)s"),
"-s", get_sstate_release_number,
"-p", get_publish_dest,
"--sstateprefix", get_sstate_release_number,
"--publish-dir", get_publish_dest,
"--build-type", util.Interpolate("%(prop:build_type)s"),
"-u", util.URLForBuild,
"-r", get_publish_resultdir,
"-q"],
"--build-url", util.URLForBuild,
"--results-dir", get_publish_resultdir,
"--quietlogging"],
name="run-config",
logfiles=get_buildlogs(maxsteps),
lazylogfiles=True,