docker: Run parallel by default

[why]
When nothing is specified there is only one patcher running instead of
number-of-threads patchers. But we want the speedup as default.

[how]
Use `-j0`, although it has a small bug. We could also use `-j100%` but
then the output might confuse people even more?

Reported-by: nobk <nobk@noreply.github.com>
Signed-off-by: Fini Jastrow <ulf.fini.jastrow@desy.de>
This commit is contained in:
Fini Jastrow 2024-02-05 18:17:20 +01:00
parent 7ebbc4e173
commit 96497b4fef

View file

@ -21,7 +21,7 @@ while [ "$#" -gt 0 ]; do
done
if [ -z "$PN" ]; then
PN=1
PN=0
fi
printf "Running with options:\n%s\nParallelism %s\n" "$args" "$PN"