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

sai_boorlagadda pushed a commit to branch feature/GEODE-10433
in repository https://gitbox.apache.org/repos/asf/geode.git


The following commit(s) were added to refs/heads/feature/GEODE-10433 by this 
push:
     new 590c65e8b8 fix tool type
590c65e8b8 is described below

commit 590c65e8b89f8874cc2747a72776295067f809d0
Author: Sai Boorlagadda <sai.boorlaga...@gmail.com>
AuthorDate: Wed Nov 16 21:34:07 2022 -0800

    fix tool type
---
 .jenkins/Jenkinsfile | 11 ++++++++++-
 1 file changed, 10 insertions(+), 1 deletion(-)

diff --git a/.jenkins/Jenkinsfile b/.jenkins/Jenkinsfile
index 3eb66048ec..3f0cf33381 100644
--- a/.jenkins/Jenkinsfile
+++ b/.jenkins/Jenkinsfile
@@ -36,10 +36,19 @@ pipeline {
             doTest(env, ":geode-unsafe:test")
           }
         }
+        stage('Unit Tests - Java 11') {
+          agent { label 'ubuntu' }
+          tools {
+            jdk 'jdk_11_latest'
+          }
+          steps {
+            doTest(env)
+          }
+        }
         stage('Unit Tests - Java 17') {
           agent { label 'ubuntu' }
           tools {
-            jdk 'openjdk_17_35'
+            jdk 'jdk_17_latest'
           }
           steps {
             doTest(env)

Reply via email to