From 0af7a44d5533c77a1e5e10dc217229dd2618c94a Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Fri, 6 Jul 2018 11:36:59 +0100 Subject: [PATCH] libvirt build: Set make_njobs=1 except when testing libvirt libvirt has a -j bug. This is allegedly going to be fixed in upstream RSN ? Anyway, for now, serialise all the builds on other branches so they are not affected. Signed-off-by: Ian Jackson --- mfi-common | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/mfi-common b/mfi-common index 9b6c947..baf5380 100644 --- a/mfi-common +++ b/mfi-common @@ -356,11 +356,17 @@ create_build_jobs () { if [ "x$REVISION_LIBVIRT" != xdisable ]; then + libvirt_build_runvars='' + case "$branch" in + libvirt*) ;; + *) libvirt_build_runvars+=" make_njobs=1";; + esac + job_create_build build-$arch-libvirt build-libvirt \ arch=$arch \ tree_xen=$TREE_XEN \ $RUNVARS $BUILD_RUNVARS $BUILD_LIBVIRT_RUNVARS $arch_runvars \ - $hostos_runvars \ + $hostos_runvars $libvirt_build_runvars \ host_hostflags=$build_hostflags \ buildjob=${bfi}build-$arch \ tree_libvirt=$TREE_LIBVIRT revision_libvirt=$REVISION_LIBVIRT\ -- 2.39.5