Message ID | 20240130080205.30323-1-alex.kanavin@gmail.com |
---|---|
State | New |
Headers | show |
Series | [yocto-autobuilder-helper] config.json: run CDN population tasks with --runall build | expand |
diff --git a/config.json b/config.json index ad18226..5e24c7e 100644 --- a/config.json +++ b/config.json @@ -969,12 +969,14 @@ }, "step5" : { "shortname" : "x86 rpm (for CDN)", + "BBTARGETS" : "--runall build core-image-full-cmdline core-image-sato-sdk core-image-minimal", "MACHINE" : "qemux86-64", "PACKAGE_CLASSES" : "package_rpm", "SANITYTARGETS" : "" }, "step6" : { "shortname" : "arm rpm (for CDN)", + "BBTARGETS" : "--runall build core-image-full-cmdline core-image-sato-sdk core-image-minimal", "MACHINE" : "qemuarm64", "PACKAGE_CLASSES" : "package_rpm", "SANITYTARGETS" : ""
There was a report of missing go-cross:populate_sysroot here: https://autobuilder.yoctoproject.org/typhoon/#/builders/83/builds/6504/steps/23/logs/stdio The builds that are expected to create the object (or take it from cache) are: https://autobuilder.yoctoproject.org/typhoon/#/builders/42/builds/8481/steps/12/logs/stdio https://autobuilder.yoctoproject.org/typhoon/#/builders/76/builds/8457/steps/25/logs/stdio and neither mentioned that task anywhere, instead going directly to go-helloworld's rpm. This means that go-cross can be neither taken from cache not written into it in a-full, and we need '--runall build' to ensure it's not skipped over. I also took the opportunity to match up the target image names with what the CDN test actually checks. Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com> --- config.json | 2 ++ 1 file changed, 2 insertions(+)