You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by bu...@apache.org on 2017/08/09 13:34:57 UTC

hbase git commit: HBASE-18467 WIP let's try using the changeset directly.

Repository: hbase
Updated Branches:
  refs/heads/HBASE-18467 a6a0a4039 -> cfb1edcc7


HBASE-18467 WIP let's try using the changeset directly.


Project: http://git-wip-us.apache.org/repos/asf/hbase/repo
Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/cfb1edcc
Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/cfb1edcc
Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/cfb1edcc

Branch: refs/heads/HBASE-18467
Commit: cfb1edcc7c10691f7362e40e781c92bb7284f0ab
Parents: a6a0a40
Author: Sean Busbey <bu...@apache.org>
Authored: Wed Aug 9 08:34:33 2017 -0500
Committer: Sean Busbey <bu...@apache.org>
Committed: Wed Aug 9 08:34:33 2017 -0500

----------------------------------------------------------------------
 dev-support/Jenkinsfile | 11 +++++++++--
 1 file changed, 9 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hbase/blob/cfb1edcc/dev-support/Jenkinsfile
----------------------------------------------------------------------
diff --git a/dev-support/Jenkinsfile b/dev-support/Jenkinsfile
index c45eeee..6022721 100644
--- a/dev-support/Jenkinsfile
+++ b/dev-support/Jenkinsfile
@@ -360,8 +360,15 @@ END
     always {
       script {
          sh "printenv"
-         for ( issue in jiraIssueSelector() ) {
-           echo issue
+         echo env.BRANCH_NAME
+         echo env.BUILD_URL
+         echo currentBuild.result
+         echo currentBuild.durationString
+         for ( change in changeSets ) {
+           echo "change:"
+           echo "	${change.getAuthor}"
+           echo "	${change.getMsg}"
+           echo "	${change.getMsgAnnotated}"
          }
       }
     }