@@ -1367,6 +1367,7 @@
}
},
"indexing" : {
+ "NEEDEDREPOS" : [],
"step1" : {
"shortname" : "Generate non-release index",
"EXTRACMDS" : ["${SCRIPTSDIR}/generate-testresult-index.py ${BASE_SHAREDDIR}/pub/non-release/"]
@@ -136,7 +136,9 @@ def addstepentry(name, taskdesc, shortname, description, detail, phase, usepty=F
bbdesc = bbdesc + ": " + detail
jsonconfig.append({"name" : name, "bbname" : bbname[:46], "phase" : phase, "description" : bbdesc, "usepty" : usepty})
-if jcfg:
+if args.target == "indexing":
+ pass
+elif jcfg:
buildtools = utils.setup_buildtools_tarball(ourconfig, args.workername, None, checkonly=True)
if buildtools:
addentry("buildtools", "Setup buildtools tarball", "init")
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> --- config.json | 1 + scripts/run-config | 4 +++- 2 files changed, 4 insertions(+), 1 deletion(-)