[
https://issues.apache.org/jira/browse/HBASE-26852?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17507619#comment-17507619
]
Duo Zhang commented on HBASE-26852:
-----------------------------------
Oh I think maybe it is introduced by my PR for increasing the build concurrency?
{code}
for i in "$@"; do
case ${i} in
--exclude-tests-url=*)
delete_parameter "${i}"
EXCLUDE_TESTS_URL=${i#*=}
;;
--include-tests-url=*)
delete_parameter "${i}"
INCLUDE_TESTS_URL=${i#*=}
;;
--hadoop-profile=*)
delete_parameter "${i}"
HADOOP_PROFILE=${i#*=}
;;
--skip-errorprone)
delete_parameter "${i}"
SKIP_ERRORPRONE=true
;;
--asf-nightlies-general-check-base=*)
delete_parameter "${i}"
ASF_NIGHTLIES_GENERAL_CHECK_BASE=${i#*=}
;;
--build-thread=*
delete_parameter "${i}"
BUILD_THREAD=${i#*=}
;;
--surefire-first-part-fork-count=*
delete_parameter "${i}"
SUREFIRE_FIRST_PART_FORK_COUNT=${i#*=}
;;
--surefire-second-part-fork-count=*
delete_parameter "${i}"
SUREFIRE_SECOND_PART_FORK_COUNT=${i#*=}
;;
esac
{code}
Seems I missed the end ')' for the newly added 3 parameters.
Let me see if adding them could solve your problem.
> --hadoop-profile is not honored in branch-2 PR builds
> -----------------------------------------------------
>
> Key: HBASE-26852
> URL: https://issues.apache.org/jira/browse/HBASE-26852
> Project: HBase
> Issue Type: Task
> Components: build
> Affects Versions: 2.5.0, 2.6.0, 2.4.12
> Reporter: Nick Dimiduk
> Priority: Major
>
> I noticed in the PR builds for HBASE-26834 that the {{HADOOP_PROFILE}} is
> apparently not honored. This is problematic for the JDK11 build, which only
> works on Hadoop3, which must be enabled via this variable.
--
This message was sent by Atlassian Jira
(v8.20.1#820001)