You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by zh...@apache.org on 2019/08/26 00:31:20 UTC

[hbase] branch HBASE-22724 updated (558df1e -> e2c02ef)

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

zhangduo pushed a change to branch HBASE-22724
in repository https://gitbox.apache.org/repos/asf/hbase.git.


    omit 558df1e  HBASE-22724 Add a emoji on the vote table for pre commit result on github
     new e2c02ef  HBASE-22724 Add a emoji on the vote table for pre commit result on github

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (558df1e)
            \
             N -- N -- N   refs/heads/HBASE-22724 (e2c02ef)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

The 1 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/Jenkinsfile_GitHub   | 5 +----
 dev-support/hbase-personality.sh | 5 +++++
 2 files changed, 6 insertions(+), 4 deletions(-)


[hbase] 01/01: HBASE-22724 Add a emoji on the vote table for pre commit result on github

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

zhangduo pushed a commit to branch HBASE-22724
in repository https://gitbox.apache.org/repos/asf/hbase.git

commit e2c02ef853b647c84225567188c9e14af56219b4
Author: Duo Zhang <zh...@apache.org>
AuthorDate: Mon Aug 26 08:30:29 2019 +0800

    HBASE-22724 Add a emoji on the vote table for pre commit result on github
---
 dev-support/Jenkinsfile_GitHub   | 7 +++----
 dev-support/hbase-personality.sh | 5 +++++
 2 files changed, 8 insertions(+), 4 deletions(-)

diff --git a/dev-support/Jenkinsfile_GitHub b/dev-support/Jenkinsfile_GitHub
index 63cadeb..12aec6f 100644
--- a/dev-support/Jenkinsfile_GitHub
+++ b/dev-support/Jenkinsfile_GitHub
@@ -37,7 +37,7 @@ pipeline {
         DOCKERFILE = "${SOURCEDIR}/dev-support/docker/Dockerfile"
         YETUS='yetus'
         // Branch or tag name.  Yetus release tags are 'rel/X.Y.Z'
-        YETUS_VERSION='rel/0.10.0'
+        YETUS_VERSION='YETUS-899'
     }
 
     parameters {
@@ -151,7 +151,6 @@ pipeline {
                         YETUS_ARGS+=("--docker")
                         YETUS_ARGS+=("--dockerfile=${DOCKERFILE}")
                         YETUS_ARGS+=("--mvn-custom-repos")
-                        YETUS_ARGS+=("--jenkins")
                         YETUS_ARGS+=("--multijdkdirs=/usr/lib/jvm/java-8-openjdk-amd64")
                         YETUS_ARGS+=("--findbugs-home=/usr")
                         YETUS_ARGS+=("--whitespace-eol-ignore-list=.*/generated/.*")
@@ -159,10 +158,10 @@ pipeline {
                         YETUS_ARGS+=("--personality=${SOURCEDIR}/dev-support/hbase-personality.sh")
                         YETUS_ARGS+=("--quick-hadoopcheck")
                         YETUS_ARGS+=("--skip-errorprone")
-                        # effectively treat dev-support as a custom maven module
-                        YETUS_ARGS+=("--skip-dir=dev-support")
                         # help keep the ASF boxes clean
                         YETUS_ARGS+=("--sentinel")
+                        # use emoji vote so it is easier to find the broken line
+                        YETUS_ARGS+=("--github-use-emoji-vote")
                         "${TESTPATCHBIN}" "${YETUS_ARGS[@]}"
                         '''
                 }
diff --git a/dev-support/hbase-personality.sh b/dev-support/hbase-personality.sh
index a37f883..5147ef3 100755
--- a/dev-support/hbase-personality.sh
+++ b/dev-support/hbase-personality.sh
@@ -86,15 +86,19 @@ function personality_parse_args
   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
       ;;
     esac
@@ -462,6 +466,7 @@ function hadoopcheck_parse_args
   for i in "$@"; do
     case ${i} in
       --quick-hadoopcheck)
+        delete_parameter "${i}"
         QUICK_HADOOPCHECK=true
       ;;
     esac