You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by zg...@apache.org on 2020/10/20 09:30:13 UTC

[hbase] branch branch-2.2 updated: HBASE-25204 Nightly job failed as the name of jdk and maven changed (#2567)

This is an automated email from the ASF dual-hosted git repository.

zghao pushed a commit to branch branch-2.2
in repository https://gitbox.apache.org/repos/asf/hbase.git


The following commit(s) were added to refs/heads/branch-2.2 by this push:
     new 2e244a3  HBASE-25204 Nightly job failed as the name of jdk and maven changed (#2567)
2e244a3 is described below

commit 2e244a3bdc7071e7b35df80b597a8c3cda65f774
Author: Guanghao Zhang <zg...@apache.org>
AuthorDate: Tue Oct 20 16:58:43 2020 +0800

    HBASE-25204 Nightly job failed as the name of jdk and maven changed (#2567)
    
    Signed-off-by: Duo Zhang <zh...@apache.org>
---
 dev-support/Jenkinsfile                             | 4 ++--
 dev-support/adhoc_run_tests/Jenkinsfile             | 4 ++--
 dev-support/flaky-tests/run-flaky-tests.Jenkinsfile | 4 ++--
 3 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/dev-support/Jenkinsfile b/dev-support/Jenkinsfile
index e34ce29..4fc26ec 100644
--- a/dev-support/Jenkinsfile
+++ b/dev-support/Jenkinsfile
@@ -505,9 +505,9 @@ pipeline {
         // See http://hbase.apache.org/book.html#maven.release
         stage ('packaging and integration') {
           tools {
-            maven 'Maven (latest)'
+            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.
-            jdk "JDK 1.8 (latest)"
+            jdk "jdk_1.8_latest"
           }
           environment {
             BASEDIR = "${env.WORKSPACE}/component"
diff --git a/dev-support/adhoc_run_tests/Jenkinsfile b/dev-support/adhoc_run_tests/Jenkinsfile
index e06fdba..476795d 100644
--- a/dev-support/adhoc_run_tests/Jenkinsfile
+++ b/dev-support/adhoc_run_tests/Jenkinsfile
@@ -51,10 +51,10 @@ pipeline {
   stages {
     stage ('run tests') {
       tools {
-        maven 'Maven (latest)'
+        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.
-        jdk "JDK 1.8 (latest)"
+        jdk "jdk_1.8_latest"
       }
       steps {
         sh """#!/bin/bash -e
diff --git a/dev-support/flaky-tests/run-flaky-tests.Jenkinsfile b/dev-support/flaky-tests/run-flaky-tests.Jenkinsfile
index 6d7d121..c048d83 100644
--- a/dev-support/flaky-tests/run-flaky-tests.Jenkinsfile
+++ b/dev-support/flaky-tests/run-flaky-tests.Jenkinsfile
@@ -34,8 +34,8 @@ pipeline {
   }
   tools {
     // this should match what the yetus nightly job for the branch will use
-    maven 'Maven (latest)'
-    jdk "JDK 1.8 (latest)"
+    maven 'maven_latest'
+    jdk "jdk_1.8_latest"
   }
   stages {
     stage ('run flaky tests') {