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/19 19:29:35 UTC

[logging-log4j-kotlin] branch master updated: Move pipeline to logging-pipelines

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 28071ae  Move pipeline to logging-pipelines
28071ae is described below

commit 28071ae11ffbd4700911ed8e64e9e813e08d2499
Author: Matt Sicker <bo...@gmail.com>
AuthorDate: Sun Jul 19 14:29:32 2020 -0500

    Move pipeline to logging-pipelines
---
 Jenkinsfile | 61 -------------------------------------------------------------
 1 file changed, 61 deletions(-)

diff --git a/Jenkinsfile b/Jenkinsfile
deleted file mode 100644
index a68a6e1..0000000
--- a/Jenkinsfile
+++ /dev/null
@@ -1,61 +0,0 @@
-#!groovy
-/*
- * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements.  See the NOTICE file distributed with
- * this work for additional information regarding copyright ownership.
- * The ASF licenses this file to You under the Apache License, Version 2.0
- * (the "License"); you may not use this file except in compliance with
- * the License.  You may obtain a copy of the License at
- *
- *     http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-pipeline {
-    agent {
-        label 'ubuntu'
-    }
-    tools {
-        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 {
-                sh 'mvn install'
-            }
-        }
-        stage('Deploy') {
-            when {
-                branch 'master'
-            }
-            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"}'
-                }
-            }
-        }
-    }
-}