abuild.conf: set CTEST_PARALLEL_LEVEL=$JOBS

same as CARGO_BUILD_JOBS etc, else it defaults to 1. theoretically this
could break some very poorly written test suite, but gentoo has set it
since 2016 with no apparent issues.

https://cgit.gentoo.org/repo/gentoo.git/commit/?id=adfccec02c2474a509fc10d580a25d72f33cab55
This commit is contained in:
Alex Xu (Hello71) 2021-10-07 02:17:47 -04:00 committed by Natanael Copa
parent 10b4e8e8bd
commit 00eacb1468

View File

@ -10,6 +10,7 @@ export JOBS=$(nproc)
export MAKEFLAGS=-j$JOBS
export SAMUFLAGS=-j$JOBS
export CARGO_BUILD_JOBS=$JOBS
export CTEST_PARALLEL_LEVEL=$JOBS
export CARGO_PROFILE_RELEASE_OPT_LEVEL="s"
export CARGO_PROFILE_RELEASE_PANIC="abort"