You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by zg...@apache.org on 2019/05/24 04:14:17 UTC

[hbase] branch branch-1 updated (b5d667c -> ef4cd68)

This is an automated email from the ASF dual-hosted git repository.

zghao pushed a change to branch branch-1
in repository https://gitbox.apache.org/repos/asf/hbase.git.


    from b5d667c  HBASE-22450 Port TestStoreScannerClosure from HBASE-22072
     new e86576e  HBASE-22462 Should run a 'mvn install' at the end of hadoop check in pre commit job
     new ef4cd68  HBASE-22462 (addendum) Should run a 'mvn install' at the end of hadoop check in pre commit job

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 dev-support/hbase-personality.sh | 6 ++++++
 1 file changed, 6 insertions(+)


[hbase] 02/02: HBASE-22462 (addendum) Should run a 'mvn install' at the end of hadoop check in pre commit job

Posted by zg...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

zghao pushed a commit to branch branch-1
in repository https://gitbox.apache.org/repos/asf/hbase.git

commit ef4cd68aeb4fac5fe6782e99bd69300690f208b4
Author: Guanghao Zhang <zg...@apache.org>
AuthorDate: Fri May 24 09:23:20 2019 +0800

    HBASE-22462 (addendum) Should run a 'mvn install' at the end of hadoop check in pre commit job
---
 dev-support/hbase-personality.sh | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/dev-support/hbase-personality.sh b/dev-support/hbase-personality.sh
index 211e409..c8db12f 100755
--- a/dev-support/hbase-personality.sh
+++ b/dev-support/hbase-personality.sh
@@ -568,8 +568,9 @@ function hadoopcheck_rebuild
 
   logfile="${PATCH_DIR}/patch-install-after-hadoopcheck.txt"
   echo_and_redirect "${logfile}" \
-    "$(maven_executor)" clean install \
+    $(maven_executor) clean install \
       -DskipTests -DHBasePatchProcess
+
   return 0
 }
 


[hbase] 01/02: HBASE-22462 Should run a 'mvn install' at the end of hadoop check in pre commit job

Posted by zg...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

zghao pushed a commit to branch branch-1
in repository https://gitbox.apache.org/repos/asf/hbase.git

commit e86576ef0acf758c4278d5df33138f747168d4cf
Author: Guanghao Zhang <zg...@apache.org>
AuthorDate: Thu May 23 14:07:46 2019 +0800

    HBASE-22462 Should run a 'mvn install' at the end of hadoop check in pre commit job
---
 dev-support/hbase-personality.sh | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/dev-support/hbase-personality.sh b/dev-support/hbase-personality.sh
index 4124b02..211e409 100755
--- a/dev-support/hbase-personality.sh
+++ b/dev-support/hbase-personality.sh
@@ -565,6 +565,11 @@ function hadoopcheck_rebuild
   else
     add_vote_table +1 hadoopcheck "Patch does not cause any errors with Hadoop ${hbase_hadoop2_versions}."
   fi
+
+  logfile="${PATCH_DIR}/patch-install-after-hadoopcheck.txt"
+  echo_and_redirect "${logfile}" \
+    "$(maven_executor)" clean install \
+      -DskipTests -DHBasePatchProcess
   return 0
 }