You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@zipkin.apache.org by ad...@apache.org on 2019/01/31 11:44:03 UTC

[incubator-zipkin-brave-karaf] branch master updated: [jenkins] More Jenkinsfile tweaks (#19)

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

adriancole pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-zipkin-brave-karaf.git


The following commit(s) were added to refs/heads/master by this push:
     new bba1bd9  [jenkins] More Jenkinsfile tweaks (#19)
bba1bd9 is described below

commit bba1bd98e4bfc838e9930c30ec32c80aea85c87c
Author: Zoltán Nagy <ab...@gmail.com>
AuthorDate: Thu Jan 31 11:43:58 2019 +0000

    [jenkins] More Jenkinsfile tweaks (#19)
    
    * Add --batch-mode to Maven invocation to reduce output spam
    * Change mail notifications to go to commits@ instead of notifications@
    because the latter doesn't exist, and creating it just for this feels
    overkill.
---
 Jenkinsfile | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/Jenkinsfile b/Jenkinsfile
index 14391dc..a9f923a 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -62,7 +62,7 @@ pipeline {
                 branch 'master'
             }
             steps {
-                sh './mvnw clean deploy -Papache-release -Dgpg.skip=true -pl -:brave-itests'
+                sh './mvnw clean deploy -Papache-release -Dgpg.skip=true --batch-mode -pl -:brave-itests'
             }
         }
     }
@@ -78,7 +78,7 @@ pipeline {
                 if (env.BRANCH_NAME == 'master') {
                     emailext(
                         subject: "[${currentBuild.projectName}] master is ${currentBuild.currentResult} (#${currentBuild.number})",
-                        to: 'notifications@zipkin.apache.org',
+                        to: 'commits@zipkin.apache.org',
                         replyTo: 'dev@zipkin.apache.org',
                         body: "See <${currentBuild.absoluteUrl}>"
                     )