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:30:08 UTC

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


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

commit bd7e9dfe4b13193f76f01bed98055a672088547e
Author: Matt Sicker <bo...@gmail.com>
AuthorDate: Sun Jul 19 14:30:03 2020 -0500

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

diff --git a/Jenkinsfile b/Jenkinsfile
deleted file mode 100644
index 2a7d4f5..0000000
--- a/Jenkinsfile
+++ /dev/null
@@ -1,42 +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: '10')
-        timeout time: 5, unit: 'MINUTES'
-    }
-    stages {
-        stage('Deploy') {
-            steps {
-                sh 'mvn deploy'
-            }
-        }
-    }
-}
-