Repository: hbase Updated Branches: refs/heads/HBASE-18467 3daccaef1 -> a8c1f08b0
HBASE-18467 try using jiraupdate thingie instead. Project: http://git-wip-us.apache.org/repos/asf/hbase/repo Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/a8c1f08b Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/a8c1f08b Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/a8c1f08b Branch: refs/heads/HBASE-18467 Commit: a8c1f08b007fd454b8f77eb7bdb2cd70621b06a6 Parents: 3daccae Author: Sean Busbey <[email protected]> Authored: Thu Aug 3 09:48:00 2017 -0500 Committer: Sean Busbey <[email protected]> Committed: Thu Aug 3 09:48:00 2017 -0500 ---------------------------------------------------------------------- dev-support/Jenkinsfile | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/hbase/blob/a8c1f08b/dev-support/Jenkinsfile ---------------------------------------------------------------------- diff --git a/dev-support/Jenkinsfile b/dev-support/Jenkinsfile index 91351ab..ec4bc61 100644 --- a/dev-support/Jenkinsfile +++ b/dev-support/Jenkinsfile @@ -110,7 +110,8 @@ curl -L -o personality.sh "${env.PROJET_PERSONALITY}" environment { // TODO does hadoopcheck need to be jdk specific? // Should be things that work with multijdk - TESTS = 'all,-unit,-findbugs' + // temp remove hadoopcheck + TESTS = 'all,-unit,-findbugs,-hadoopcheck' // on branches that don't support jdk7, this will already be JAVA_HOME, so we'll end up not // doing multijdk there. MULTIJDK = '/usr/lib/jvm/java-8-oracle' @@ -142,6 +143,8 @@ curl -L -o personality.sh "${env.PROJET_PERSONALITY}" stage ('yetus jdk7 checks') { when { branch 'branch-1*' + //disable + expression { false; } } environment { TESTS = 'mvninstall,compile,javac,unit,htmlout' @@ -195,6 +198,8 @@ curl -L -o personality.sh "${env.PROJET_PERSONALITY}" when { not { branch 'branch-1.1*' + //disable + expression { false; } } } environment { @@ -300,7 +305,8 @@ END } post { always { - jiraIssueSelector(issueSelector: [$class: 'DefaultIssueSelector']) + step([$class: 'hudson.plugins.jira.JiraIssueUpdater', + issueSelector: [$class: 'hudson.plugins.jira.selector.DefaultIssueSelector']) } failure { deleteDir()
