Always prefix the ninja args with the FDO_CI_CONCURRENT values (i.e. how many
jobs the runner tells us).
Note that this variable is currently not passed through to the qemu jobs, so
inside the VM we'll still use the ninja default values.
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
echo " CI_JOB_NAME=$CI_JOB_NAME"
fi
+if [[ -n "$FDO_CI_CONCURRENT" ]]; then
+ NINJA_ARGS="-j${FDO_CI_CONCURRENT} $NINJA_ARGS"
+fi
echo "*************************************************"
echo "builddir: $MESON_BUILDDIR"