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 2018/04/11 18:05:39 UTC

hbase git commit: HBASE-20355 fix archiving for src tarball stage.

Repository: hbase
Updated Branches:
  refs/heads/HBASE-20355 538c32bfc -> 4d9250684


HBASE-20355 fix archiving for src tarball stage.


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

Branch: refs/heads/HBASE-20355
Commit: 4d9250684f6b24efafa267ee39d4749916027559
Parents: 538c32b
Author: Sean Busbey <bu...@cloudera.com>
Authored: Wed Apr 11 13:04:59 2018 -0500
Committer: Sean Busbey <bu...@cloudera.com>
Committed: Wed Apr 11 13:04:59 2018 -0500

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


http://git-wip-us.apache.org/repos/asf/hbase/blob/4d925068/dev-support/Jenkinsfile
----------------------------------------------------------------------
diff --git a/dev-support/Jenkinsfile b/dev-support/Jenkinsfile
index 923c027..f05523a 100644
--- a/dev-support/Jenkinsfile
+++ b/dev-support/Jenkinsfile
@@ -446,8 +446,8 @@ curl -L  -o personality.sh "${env.PROJECT_PERSONALITY}"
               set -e
               rm -rf "output-srctarball/machine" && mkdir "output-srctarball/machine"
               "${BASEDIR}/dev-support/gather_machine_environment.sh" "output-srctarball/machine"
-              echo "got the following saved stats in '${OUTPUT_DIR_RELATIVE}/machine'"
-              ls -lh "${OUTPUT_DIR_RELATIVE}/machine"
+              echo "got the following saved stats in 'output-srctarball/machine'"
+              ls -lh "output-srctarball/machine"
 '''
             sh """#!/bin/bash -e
               if "${env.BASEDIR}/dev-support/hbase_nightly_source-artifact.sh" \
@@ -467,6 +467,7 @@ curl -L  -o personality.sh "${env.PROJECT_PERSONALITY}"
             always {
               stash name: 'srctarball-result', includes: "output-srctarball/commentfile"
               archive 'output-srctarball/*'
+              archive 'output-srctarball/**/*'
             }
           }
         }