mirror of
git://git.yoctoproject.org/yocto-autobuilder2.git
synced 2025-07-19 20:59:02 +02:00
builders: Use full option parameters to run-config for clarity
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
parent
14046de06d
commit
d87126c419
22
builders.py
22
builders.py
|
@ -175,13 +175,13 @@ def create_builder_factory():
|
||||||
util.Interpolate("%(prop:builddir)s/build/build"),
|
util.Interpolate("%(prop:builddir)s/build/build"),
|
||||||
util.Interpolate("%(prop:branch_poky)s"),
|
util.Interpolate("%(prop:branch_poky)s"),
|
||||||
util.Interpolate("%(prop:repo_poky)s"),
|
util.Interpolate("%(prop:repo_poky)s"),
|
||||||
"-s", get_sstate_release_number,
|
"--sstateprefix", get_sstate_release_number,
|
||||||
"-b", util.Interpolate("%(prop:buildappsrcrev)s"),
|
"--buildappsrcrev", util.Interpolate("%(prop:buildappsrcrev)s"),
|
||||||
"--build-type", util.Interpolate("%(prop:build_type)s"),
|
"--build-type", util.Interpolate("%(prop:build_type)s"),
|
||||||
"-p", get_publish_dest,
|
"--publish-dir", get_publish_dest,
|
||||||
"-u", util.URLForBuild,
|
"--build-url", util.URLForBuild,
|
||||||
"-r", get_publish_resultdir,
|
"--results-dir", get_publish_resultdir,
|
||||||
"-q"],
|
"--quietlogging"],
|
||||||
name="run-config",
|
name="run-config",
|
||||||
logfiles=get_buildlogs(maxsteps),
|
logfiles=get_buildlogs(maxsteps),
|
||||||
lazylogfiles=True,
|
lazylogfiles=True,
|
||||||
|
@ -265,12 +265,12 @@ def create_parent_builder_factory(buildername, waitname):
|
||||||
util.Interpolate("%(prop:builddir)s/build/build"),
|
util.Interpolate("%(prop:builddir)s/build/build"),
|
||||||
util.Interpolate("%(prop:branch_poky)s"),
|
util.Interpolate("%(prop:branch_poky)s"),
|
||||||
util.Interpolate("%(prop:repo_poky)s"),
|
util.Interpolate("%(prop:repo_poky)s"),
|
||||||
"-s", get_sstate_release_number,
|
"--sstateprefix", get_sstate_release_number,
|
||||||
"-p", get_publish_dest,
|
"--publish-dir", get_publish_dest,
|
||||||
"--build-type", util.Interpolate("%(prop:build_type)s"),
|
"--build-type", util.Interpolate("%(prop:build_type)s"),
|
||||||
"-u", util.URLForBuild,
|
"--build-url", util.URLForBuild,
|
||||||
"-r", get_publish_resultdir,
|
"--results-dir", get_publish_resultdir,
|
||||||
"-q"],
|
"--quietlogging"],
|
||||||
name="run-config",
|
name="run-config",
|
||||||
logfiles=get_buildlogs(maxsteps),
|
logfiles=get_buildlogs(maxsteps),
|
||||||
lazylogfiles=True,
|
lazylogfiles=True,
|
||||||
|
|
Loading…
Reference in New Issue
Block a user