You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@logging.apache.org by ma...@apache.org on 2020/07/18 00:32:44 UTC

[logging-log4j-kotlin] branch master updated: Fix error

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

mattsicker pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/logging-log4j-kotlin.git


The following commit(s) were added to refs/heads/master by this push:
     new 9af85d6  Fix error
9af85d6 is described below

commit 9af85d6b59a3d07a47aaa2d8625f2861750935a4
Author: Matt Sicker <bo...@gmail.com>
AuthorDate: Fri Jul 17 19:32:33 2020 -0500

    Fix error
---
 Jenkinsfile | 26 +++++++++++++-------------
 1 file changed, 13 insertions(+), 13 deletions(-)

diff --git a/Jenkinsfile b/Jenkinsfile
index 09c50c2..a68a6e1 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -42,19 +42,19 @@ pipeline {
             steps {
                 sh 'mvn deploy'
             }
-        }
-        post {
-            fixed {
-                emailext to: 'notifications@logging.apache.org',
-                    from: 'Mr. Jenkins <je...@ci-builds.apache.org>',
-                    subject: "[CI][SUCCESS] ${env.JOB_NAME}#${env.BUILD_NUMBER} back to normal",
-                    body: '${SCRIPT, template="groovy-text.template"}'
-            }
-            failure {
-                emailext to: 'notifications@logging.apache.org',
-                    from: 'Mr. Jenkins <je...@ci-builds.apache.org>',
-                    subject: "[CI][FAILURE] ${env.JOB_NAME}#${env.BUILD_NUMBER} has potential issues",
-                    body: '${SCRIPT, template="groovy-text.template"}'
+            post {
+                fixed {
+                    emailext to: 'notifications@logging.apache.org',
+                        from: 'Mr. Jenkins <je...@ci-builds.apache.org>',
+                        subject: "[CI][SUCCESS] ${env.JOB_NAME}#${env.BUILD_NUMBER} back to normal",
+                        body: '${SCRIPT, template="groovy-text.template"}'
+                }
+                failure {
+                    emailext to: 'notifications@logging.apache.org',
+                        from: 'Mr. Jenkins <je...@ci-builds.apache.org>',
+                        subject: "[CI][FAILURE] ${env.JOB_NAME}#${env.BUILD_NUMBER} has potential issues",
+                        body: '${SCRIPT, template="groovy-text.template"}'
+                }
             }
         }
     }