You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directory.apache.org by se...@apache.org on 2021/06/24 19:31:34 UTC

[directory-server] branch master updated: Switch Windows build to Java 11

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

seelmann pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/directory-server.git


The following commit(s) were added to refs/heads/master by this push:
     new e60ea6d  Switch Windows build to Java 11
e60ea6d is described below

commit e60ea6dc8acb52031435d0e681f675ccfc55880d
Author: Stefan Seelmann <ma...@stefan-seelmann.de>
AuthorDate: Thu Jun 24 21:31:23 2021 +0200

    Switch Windows build to Java 11
---
 Jenkinsfile | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/Jenkinsfile b/Jenkinsfile
index c60219f..c8ecc05 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -122,7 +122,7 @@ pipeline {
             }
           }
         }
-        stage ('Windows Java 8') {
+        stage ('Windows Java 11') {
           options {
             timeout(time: 4, unit: 'HOURS')
             retry(2)
@@ -131,9 +131,8 @@ pipeline {
             label 'Windows'
           }
           steps {
-            // TODO: need to investigate test failure on Windows
             bat '''
-            set JAVA_HOME=F:\\jenkins\\tools\\java\\latest1.8
+            set JAVA_HOME=F:\\jenkins\\tools\\java\\latest11
             set MAVEN_OPTS="-Xmx512m"
             F:\\jenkins\\tools\\maven\\latest3\\bin\\mvn -V -U clean verify
             '''