You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by jp...@apache.org on 2018/06/27 13:39:24 UTC

[camel] branch master updated: Add JDK 11 early builds to our daily Jenkins pipeline

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

jpoth pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel.git


The following commit(s) were added to refs/heads/master by this push:
     new c6c243f  Add JDK 11 early builds to our daily Jenkins pipeline
c6c243f is described below

commit c6c243f03f0205797ad8746b8e9aa893c2f07b64
Author: jpoth <po...@gmail.com>
AuthorDate: Wed Jun 27 15:38:55 2018 +0200

    Add JDK 11 early builds to our daily Jenkins pipeline
---
 Jenkinsfile.daily | 16 ++++++++++++++++
 1 file changed, 16 insertions(+)

diff --git a/Jenkinsfile.daily b/Jenkinsfile.daily
index 57f023e..0a7ddba 100644
--- a/Jenkinsfile.daily
+++ b/Jenkinsfile.daily
@@ -83,6 +83,22 @@ pipeline {
             }
         }
 
+        stage('Test JDK 11') {
+            tools {
+                jdk 'JDK 11 b19 (early access build)'
+            }
+            steps {
+                sh script: "./mvnw $MAVEN_PARAMS -Dmaven.test.failure.ignore=true test", returnStatus: true
+            }
+            post {
+                always {
+                    junit allowEmptyResults: true, testResults: '**/target/surefire-reports/*.xml'
+                    junit allowEmptyResults: true, testResults: '**/target/failsafe-reports/*.xml'
+                    sh "find . -path '*/target/surefire-reports/*' -delete -o -path '*/target/failsafe-reports/*' -delete"
+                }
+            }
+        }
+
     }
 
 }