HBASE-26917 Do not add --threads when running 'mvn site' (#4354)
Signed-off-by: GeorryHuang <huangzhuoyue@apache.org>
This commit is contained in:
parent
f848c61e3d
commit
f4eb9071fd
|
@ -156,10 +156,14 @@ function personality_modules
|
|||
# At a few points, hbase modules can run build, test, etc. in parallel
|
||||
# Let it happen. Means we'll use more CPU but should be for short bursts.
|
||||
# https://cwiki.apache.org/confluence/display/MAVEN/Parallel+builds+in+Maven+3
|
||||
if [[ -n "${BUILD_THREAD}" ]]; then
|
||||
extra="--threads=${BUILD_THREAD}"
|
||||
if [[ "${testtype}" == mvnsite ]]; then
|
||||
yetus_debug "Skip specifying --threads since maven-site-plugin does not support building in parallel."
|
||||
else
|
||||
extra="--threads=2"
|
||||
if [[ -n "${BUILD_THREAD}" ]]; then
|
||||
extra="--threads=${BUILD_THREAD}"
|
||||
else
|
||||
extra="--threads=2"
|
||||
fi
|
||||
fi
|
||||
|
||||
# Set java.io.tmpdir to avoid exhausting the /tmp space
|
||||
|
|
Loading…
Reference in New Issue