You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by zr...@apache.org on 2018/02/19 14:10:59 UTC

[camel] branch jenkins-pipeline updated (b295b78 -> dfe05f8)

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

zregvart pushed a change to branch jenkins-pipeline
in repository https://gitbox.apache.org/repos/asf/camel.git.


 discard b295b78  CAMEL-11930: pipeline e-mail support
 discard 985a347  CAMEL-11930: don't fail if no JUnit results found
     add 9c310d4  Add missing JARs to kit
     add dd319ab  AMQP Fix docs
     add e97c71c  Upgrade Chronicle Wire to version 1.10.18
     add f31b468  Added an example of amqp.traceFrames in camel-amqp docs
     add 4926994  Update docs camel-amqp
     add 15b58bc  Fix Typo AMQP protocol
     add 730bc8c  Upgrade Chronicle Queue to version 4.6.71
     add 17ba3fc  CAMEL-11930: we need to install artifacts in Bu...
     new 680d81f  CAMEL-11930: don't fail if no JUnit results found
     new dfe05f8  CAMEL-11930: pipeline e-mail support

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (b295b78)
            \
             N -- N -- N   refs/heads/jenkins-pipeline (dfe05f8)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 Jenkinsfile                                        |  4 +-
 apache-camel/pom.xml                               | 45 ++++++++++++++++++++++
 .../camel-amqp/src/main/docs/amqp-component.adoc   | 15 ++++++--
 parent/pom.xml                                     |  4 +-
 4 files changed, 61 insertions(+), 7 deletions(-)

-- 
To stop receiving notification emails like this one, please contact
zregvart@apache.org.

[camel] 02/02: CAMEL-11930: pipeline e-mail support

Posted by zr...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

zregvart pushed a commit to branch jenkins-pipeline
in repository https://gitbox.apache.org/repos/asf/camel.git

commit dfe05f8121be3472ccc19b4665c2da85ead61b49
Author: Zoran Regvart <zr...@apache.org>
AuthorDate: Mon Feb 19 12:33:37 2018 +0100

    CAMEL-11930: pipeline e-mail support
    
    Pipeline build should now send e-mail notifications.
---
 Jenkinsfile | 11 +++++++++++
 1 file changed, 11 insertions(+)

diff --git a/Jenkinsfile b/Jenkinsfile
index 03a61ba..7632ac3 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -72,5 +72,16 @@ pipeline {
             }
         }
     }
+
+    post {
+        always {
+            emailext(
+                subject: '${DEFAULT_SUBJECT}',
+                to: 'zoran+cameldev@regvart.com',
+                body: '${DEFAULT_CONTENT}',
+                recipientProviders: [[$class: 'CulpritsRecipientProvider']]
+            )
+        }
+    }
 }
 

-- 
To stop receiving notification emails like this one, please contact
zregvart@apache.org.

[camel] 01/02: CAMEL-11930: don't fail if no JUnit results found

Posted by zr...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

zregvart pushed a commit to branch jenkins-pipeline
in repository https://gitbox.apache.org/repos/asf/camel.git

commit 680d81f21a4b70aec1bef1ada14507e408fb9f3f
Author: Zoran Regvart <zr...@apache.org>
AuthorDate: Mon Feb 19 12:35:26 2018 +0100

    CAMEL-11930: don't fail if no JUnit results found
    
    Allowed JUnit test result archiver to proceed even if no test reports
    were created (i.e. if no modules have been changed and they were all
    skipped).
---
 Jenkinsfile | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/Jenkinsfile b/Jenkinsfile
index 755467f..03a61ba 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -60,8 +60,8 @@ pipeline {
             }
             post {
                 always {
-                    junit '**/target/surefire-reports/*.xml'
-                    junit '**/target/failsafe-reports/*.xml'
+                    junit allowEmptyResults: true, testResults: '**/target/surefire-reports/*.xml'
+                    junit allowEmptyResults: true, testResults: '**/target/failsafe-reports/*.xml'
                 }
             }
         }

-- 
To stop receiving notification emails like this one, please contact
zregvart@apache.org.