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/02/28 16:45:43 UTC

hbase git commit: HBASE-18467 have to setup the new workspace that's on the parallel executors.

Repository: hbase
Updated Branches:
  refs/heads/HBASE-15151 6388f0216 -> a9bc4d69c


HBASE-18467 have to setup the new workspace that's on the parallel executors.


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

Branch: refs/heads/HBASE-15151
Commit: a9bc4d69cb865b73aa8a2b2cd7f775ec814eed5d
Parents: 6388f02
Author: Sean Busbey <bu...@apache.org>
Authored: Wed Feb 28 10:44:40 2018 -0600
Committer: Sean Busbey <bu...@apache.org>
Committed: Wed Feb 28 10:44:40 2018 -0600

----------------------------------------------------------------------
 dev-support/Jenkinsfile | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hbase/blob/a9bc4d69/dev-support/Jenkinsfile
----------------------------------------------------------------------
diff --git a/dev-support/Jenkinsfile b/dev-support/Jenkinsfile
index d039af2..57d677a 100644
--- a/dev-support/Jenkinsfile
+++ b/dev-support/Jenkinsfile
@@ -64,6 +64,7 @@ pipeline {
         dir('component') {
           checkout scm
         }
+        stash name: 'component', includes: "component/*,component/**/*"
       }
     }
     stage ('yetus install') {
@@ -133,6 +134,7 @@ curl -L  -o personality.sh "${env.PROJECT_PERSONALITY}"
           }
           steps {
             unstash 'yetus'
+            unstash 'component'
             sh '''#!/usr/bin/env bash
               rm -rf "${OUTPUT_DIR}" && mkdir "${OUTPUT_DIR}"
               rm -rf "${OUTPUT_DIR}/machine" && mkdir "${OUTPUT_DIR}/machine"
@@ -186,6 +188,7 @@ curl -L  -o personality.sh "${env.PROJECT_PERSONALITY}"
           }
           steps {
             unstash 'yetus'
+            unstash 'component'
             sh '''#!/usr/bin/env bash
               rm -rf "${OUTPUT_DIR}" && mkdir "${OUTPUT_DIR}"
               rm -rf "${OUTPUT_DIR}/machine" && mkdir "${OUTPUT_DIR}/machine"
@@ -261,6 +264,7 @@ curl -L  -o personality.sh "${env.PROJECT_PERSONALITY}"
           }
           steps {
             unstash 'yetus'
+            unstash 'component'
             sh '''#!/usr/bin/env bash
               rm -rf "${OUTPUT_DIR}" && mkdir "${OUTPUT_DIR}"
               rm -rf "${OUTPUT_DIR}/machine" && mkdir "${OUTPUT_DIR}/machine"
@@ -334,6 +338,7 @@ curl -L  -o personality.sh "${env.PROJECT_PERSONALITY}"
           }
           steps {
             unstash 'yetus'
+            unstash 'component'
             sh '''#!/usr/bin/env bash
               rm -rf "${OUTPUT_DIR}" && mkdir "${OUTPUT_DIR}"
               rm -rf "${OUTPUT_DIR}/machine" && mkdir "${OUTPUT_DIR}/machine"
@@ -388,7 +393,6 @@ curl -L  -o personality.sh "${env.PROJECT_PERSONALITY}"
         // This is meant to mimic what a release manager will do to create RCs.
         // See http://hbase.apache.org/book.html#maven.release
         stage ('create source tarball') {
-          agent any
           tools {
             maven 'Maven (latest)'
             // this needs to be set to the jdk that ought to be used to build releases on the branch the Jenkinsfile is stored in.