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/01 21:29:52 UTC

[1/2] hbase git commit: HBASE-15151 ensure findbugs check runs in nightly tests on all branches.

Repository: hbase
Updated Branches:
  refs/heads/master ddc9af902 -> c415ddb38


HBASE-15151 ensure findbugs check runs in nightly tests on all branches.

Signed-off-by: Mike Drob <md...@apache.org>


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

Branch: refs/heads/master
Commit: 383b7cc5920b55e0b4d72cbe555089765d375dca
Parents: ddc9af9
Author: Sean Busbey <bu...@apache.org>
Authored: Sun Feb 25 00:35:45 2018 -0600
Committer: Sean Busbey <bu...@apache.org>
Committed: Thu Mar 1 15:21:40 2018 -0600

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


http://git-wip-us.apache.org/repos/asf/hbase/blob/383b7cc5/dev-support/Jenkinsfile
----------------------------------------------------------------------
diff --git a/dev-support/Jenkinsfile b/dev-support/Jenkinsfile
index fe3676d..fb38bbe 100644
--- a/dev-support/Jenkinsfile
+++ b/dev-support/Jenkinsfile
@@ -255,7 +255,7 @@ curl -L  -o personality.sh "${env.PROJECT_PERSONALITY}"
             }
           }
           environment {
-            TESTS = 'mvninstall,compile,javac,unit,htmlout'
+            TESTS = 'mvninstall,compile,javac,unit,findbugs,htmlout'
             OUTPUT_DIR_RELATIVE = "${env.OUTPUT_DIR_RELATIVE_HADOOP2}"
             OUTPUT_DIR = "${env.WORKSPACE}/${env.OUTPUT_DIR_RELATIVE_HADOOP2}"
             // This isn't strictly needed on branches that only support jdk8, but doesn't hurt
@@ -327,10 +327,7 @@ curl -L  -o personality.sh "${env.PROJECT_PERSONALITY}"
             }
           }
           environment {
-            // Failure in any stage fails the build and consecutive stages are not built.
-            // Findbugs is part of this last yetus stage to prevent findbugs precluding hadoop3
-            // tests.
-            TESTS = 'mvninstall,compile,javac,unit,findbugs,htmlout'
+            TESTS = 'mvninstall,compile,javac,unit,htmlout'
             OUTPUT_DIR_RELATIVE = "${env.OUTPUT_DIR_RELATIVE_HADOOP3}"
             OUTPUT_DIR = "${env.WORKSPACE}/${env.OUTPUT_DIR_RELATIVE_HADOOP3}"
             // This isn't strictly needed on branches that only support jdk8, but doesn't hurt


[2/2] hbase git commit: HBASE-20075 remove logic for branch-1.1 nightly testing

Posted by bu...@apache.org.
HBASE-20075 remove logic for branch-1.1 nightly testing

Signed-off-by: Michael Stack <st...@apache.org>


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

Branch: refs/heads/master
Commit: c415ddb38c26877a76ba4e9b8e46cbb79b7f0574
Parents: 383b7cc
Author: Sean Busbey <bu...@apache.org>
Authored: Sat Feb 24 15:50:12 2018 -0600
Committer: Sean Busbey <bu...@apache.org>
Committed: Thu Mar 1 15:28:30 2018 -0600

----------------------------------------------------------------------
 dev-support/Jenkinsfile | 9 ---------
 1 file changed, 9 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hbase/blob/c415ddb3/dev-support/Jenkinsfile
----------------------------------------------------------------------
diff --git a/dev-support/Jenkinsfile b/dev-support/Jenkinsfile
index fb38bbe..fa7c8ba 100644
--- a/dev-support/Jenkinsfile
+++ b/dev-support/Jenkinsfile
@@ -195,10 +195,6 @@ curl -L  -o personality.sh "${env.PROJECT_PERSONALITY}"
               "${BASEDIR}/dev-support/gather_machine_environment.sh" "${OUTPUT_DIR_RELATIVE}/machine"
 '''
             sh '''#!/usr/bin/env bash
-              # for branch-1.1 we don't do jdk8 findbugs, so do it here
-              if [ "${BRANCH_NAME}" == "branch-1.1" ]; then
-                TESTS+=",findbugs"
-              fi
               rm -rf "${OUTPUT_DIR}/commentfile}"
               declare -i status=0
               if "${BASEDIR}/dev-support/hbase_nightly_yetus.sh" ; then
@@ -249,11 +245,6 @@ curl -L  -o personality.sh "${env.PROJECT_PERSONALITY}"
       label 'Hadoop'
     }
   }
-          when {
-            not {
-              branch 'branch-1.1*'
-            }
-          }
           environment {
             TESTS = 'mvninstall,compile,javac,unit,findbugs,htmlout'
             OUTPUT_DIR_RELATIVE = "${env.OUTPUT_DIR_RELATIVE_HADOOP2}"