config/run-config: Allow other OE-Core machines to be tested manually

These are not part of our standard testing but allow them to
be triggered manually to assess their status.

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Richard Purdie 2022-05-13 09:46:09 +01:00
parent a71a53025d
commit 47ef936ea5
2 changed files with 18 additions and 0 deletions

View File

@ -322,6 +322,22 @@
"MACHINE" : "qemuarm64",
"TEMPLATE" : "ltp-qemu"
},
"qemuriscv32" : {
"MACHINE" : "qemuriscv64",
"TEMPLATE" : "arch-qemu"
},
"qemuriscv64" : {
"MACHINE" : "qemuriscv64",
"TEMPLATE" : "arch-qemu"
},
"qemuriscv64-ptest" : {
"MACHINE" : "qemuriscv64",
"TEMPLATE" : "ptest-qemu"
},
"qemuppc64" : {
"MACHINE" : "qemuppc64",
"TEMPLATE" : "arch-qemu"
},
"meta-arm" : {
"NEEDREPOS" : ["poky", "meta-arm"],
"ADDLAYER" : [

View File

@ -85,6 +85,8 @@ testmode = args.test
# toolchain tests are run in system mode for x86, user mode for the other
# arches due to speed
# toolchain tests only run on full builds
if args.target in ["qemuriscv32", "qemuriscv64", "qemuppc64"]:
args.build_type = "full"
if args.build_type == "quick":
ourconfig["HELPERSTMACHTARGS"] = "-a -t machine"
elif args.build_type == "full":