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/03/07 16:08:34 UTC

hbase git commit: HBASE-18467 WIP try to work-around unstash for optional build step results.

Repository: hbase
Updated Branches:
  refs/heads/HBASE-18467 13d1b4af9 -> a8c7621cf


HBASE-18467 WIP try to work-around unstash for optional build step results.


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

Branch: refs/heads/HBASE-18467
Commit: a8c7621cf71b92de8653decce0f0f71ce898ed47
Parents: 13d1b4a
Author: Sean Busbey <bu...@apache.org>
Authored: Wed Mar 7 10:08:14 2018 -0600
Committer: Sean Busbey <bu...@apache.org>
Committed: Wed Mar 7 10:08:14 2018 -0600

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


http://git-wip-us.apache.org/repos/asf/hbase/blob/a8c7621c/dev-support/Jenkinsfile
----------------------------------------------------------------------
diff --git a/dev-support/Jenkinsfile b/dev-support/Jenkinsfile
index 41e9fef..74b9e8c 100644
--- a/dev-support/Jenkinsfile
+++ b/dev-support/Jenkinsfile
@@ -110,6 +110,17 @@ curl -L  -o personality.sh "${env.PROJECT_PERSONALITY}"
         stash name: 'yetus', includes: "yetus-*/*,yetus-*/**/*,tools/personality.sh"
       }
     }
+    stage ('init health results') {
+      steps {
+        // stash with given name for all tests we might run, so that we can unstash all of them even if
+        // we skip some due to e.g. branch-specific JDK or Hadoop support
+        stash name: 'general-result', allowEmpty: true, includes: "${OUTPUT_DIR_RELATIVE_GENERAL}/doesn't-match"
+        stash name: 'jdk7-result', allowEmpty: true, includes: "${OUTPUT_DIR_RELATIVE_JDK7}/doesn't-match"
+        stash name: 'hadoop2-result', allowEmpty: true, includes: "${OUTPUT_DIR_RELATIVE_HADOOP2}/doesn't-match"
+        stash name: 'hadoop3-result', allowEmpty: true, includes: "${OUTPUT_DIR_RELATIVE_HADOOP3}/doesn't-match"
+        stash name: 'srctarball-result', allowEmpty: true, includes: "output-srctarball/doesn't-match"
+      }
+    }
     stage ('health checks') {
       parallel {
         stage ('yetus general check') {