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:23:46 UTC

[logging-log4j-kotlin] branch master updated: Update pipeline to match others

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 c1d17e3  Update pipeline to match others
c1d17e3 is described below

commit c1d17e3011be014299e6048e9c45de37851c2042
Author: Matt Sicker <bo...@gmail.com>
AuthorDate: Fri Jul 17 19:23:27 2020 -0500

    Update pipeline to match others
---
 Jenkinsfile | 32 ++++++++++++++++++++++++--------
 1 file changed, 24 insertions(+), 8 deletions(-)

diff --git a/Jenkinsfile b/Jenkinsfile
index eafcb26..09c50c2 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -24,22 +24,38 @@ pipeline {
         maven 'Maven 3 (latest)'
         jdk 'JDK 1.8 (latest)'
     }
+    options {
+        ansiColor 'xterm'
+        buildDiscarder logRotator(numToKeepStr: '25')
+        timeout time: 1, unit: 'HOURS'
+    }
     stages {
         stage('Build') {
             steps {
-                ansiColor('xterm') {
-                    sh 'mvn install'
-                }
+                sh 'mvn install'
             }
         }
         stage('Deploy') {
-            when { branch 'master' }
+            when {
+                branch 'master'
+            }
             steps {
-                ansiColor('xterm') {
-                    sh 'mvn deploy'
-                }
+                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"}'
             }
         }
     }
 }
-