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:31:09 UTC

[logging-chainsaw] 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-chainsaw.git


The following commit(s) were added to refs/heads/master by this push:
     new 31b2de5  Move pipeline to logging-pipelines
31b2de5 is described below

commit 31b2de52fb4e0bc720762446fc979c0dbf7dc6fd
Author: Matt Sicker <bo...@gmail.com>
AuthorDate: Sun Jul 19 14:31:05 2020 -0500

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

diff --git a/Jenkinsfile b/Jenkinsfile
deleted file mode 100644
index 9e35adb..0000000
--- a/Jenkinsfile
+++ /dev/null
@@ -1,68 +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 -Pdevelopment site:site
-                mvn -Pdevelopment install
-                '''
-                junit '**/target/surefire-reports/*.xml'
-            }
-        }
-        stage('Deploy') {
-            when {
-                branch 'master'
-            }
-            steps {
-                sh 'mvn -Pdevelopment 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"}'
-                }
-            }
-        }
-    }
-}
-