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 2020/04/04 12:54:01 UTC

[directory-studio] branch master updated: Additionally test with Java 14

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-studio.git


The following commit(s) were added to refs/heads/master by this push:
     new cc42e5e  Additionally test with Java 14
cc42e5e is described below

commit cc42e5e23427fe0e9f0a459e9e56cc0937095fb8
Author: Stefan Seelmann <ma...@stefan-seelmann.de>
AuthorDate: Sat Apr 4 14:53:46 2020 +0200

    Additionally test with Java 14
---
 Jenkinsfile | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)

diff --git a/Jenkinsfile b/Jenkinsfile
index 740257a..c6052fb 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -96,6 +96,29 @@ pipeline {
             }
           }
         }
+        stage ('Linux Java 14') {
+          options {
+            timeout(time: 4, unit: 'HOURS')
+            retry(2)
+          }
+          agent {
+            docker {
+              label 'ubuntu && !H28 && !H36 && !H40'
+              image 'apachedirectory/maven-build:jdk-14'
+              //args '-v $HOME/.m2:/home/hnelson/.m2'
+            }
+          }
+          steps {
+            sh 'export DISPLAY=:99; mvn -V -U -f pom-first.xml clean install && mvn -V clean install -Dorg.eclipse.swtbot.search.timeout=20000 -Denable-ui-tests'
+          }
+          post {
+            always {
+              junit '**/target/surefire-reports/*.xml'
+              archiveArtifacts artifacts:'tests/test.integration.ui/screenshots/*', allowEmptyArchive:true
+              deleteDir()
+            }
+          }
+        }
         stage ('Windows Java 8') {
           options {
             timeout(time: 4, unit: 'HOURS')