config.json: Try allowing a bit more parallelism

Currently the autobuilders seem to run at 25% idle at times. We see a lof
of bouncing on IO load and it appears the systems could cope with higher
values.

Increase the make load average, cpu and IO pressure limits a bit to
see if build times improve.

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Richard Purdie 2024-02-08 15:25:20 +00:00
parent b113aba114
commit 6db39356cf

View File

@ -49,9 +49,9 @@
"BB_GENERATE_MIRROR_TARBALLS = '1'",
"BB_NUMBER_THREADS = '16'",
"BB_NUMBER_PARSE_THREADS = '16'",
"PARALLEL_MAKE = '-j 16 -l 52'",
"BB_PRESSURE_MAX_CPU = '10000'",
"BB_PRESSURE_MAX_IO = '10000'",
"PARALLEL_MAKE = '-j 16 -l 75'",
"BB_PRESSURE_MAX_CPU = '20000'",
"BB_PRESSURE_MAX_IO = '20000'",
"XZ_MEMLIMIT = '5%'",
"XZ_THREADS = '8'",
"ZSTD_THREADS = '8'",