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

acosentino pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel.git


The following commit(s) were added to refs/heads/main by this push:
     new ab5400ec888 Remove Jenkinsfile for full pipeline
ab5400ec888 is described below

commit ab5400ec888b10f18de96d6bee52ac5497865645
Author: Andrea Cosentino <[email protected]>
AuthorDate: Thu Jan 12 10:41:05 2023 +0100

    Remove Jenkinsfile for full pipeline
    
    Signed-off-by: Andrea Cosentino <[email protected]>
---
 Jenkinsfile.full.pipeline | 69 -----------------------------------------------
 1 file changed, 69 deletions(-)

diff --git a/Jenkinsfile.full.pipeline b/Jenkinsfile.full.pipeline
deleted file mode 100644
index 8106f8ee573..00000000000
--- a/Jenkinsfile.full.pipeline
+++ /dev/null
@@ -1,69 +0,0 @@
-/*
- * 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.
- */
-
-def AGENT_LABEL = env.AGENT_LABEL ?: 'ubuntu'
-def JDK_NAME = env.JDK_NAME ?: 'adoptopenjdk_hotspot_8u282'
-
-def MAVEN_PARAMS = "-U -B -e -fae -V -Dnoassembly -Dmaven.compiler.fork=true 
-Dsurefire.rerunFailingTestsCount=2"
-
-pipeline {
-
-    agent {
-        label AGENT_LABEL
-    }
-
-    tools {
-        jdk JDK_NAME
-    }
-
-    environment {
-        MAVEN_SKIP_RC = true
-    }
-
-    options {
-        buildDiscarder(
-            logRotator(artifactNumToKeepStr: '5', numToKeepStr: '10')
-        )
-        disableConcurrentBuilds()
-    }
-
-    stages {
-
-        stage('Camel full pipeline') {
-
-            steps {
-                build job: 'Camel/Apache Camel/main/', wait: true
-                build job: 'Camel/Camel-Karaf Daily/main/', wait: true
-                build job: 'Camel/Camel-Spring-Boot Daily/main', wait: true
-            }
-        }
-
-    }
-
-    post {
-        always {
-            emailext(
-                subject: '${DEFAULT_SUBJECT}',
-                body: '${DEFAULT_CONTENT}',
-                recipientProviders: [[$class: 'CulpritsRecipientProvider']]
-            )
-        }
-    }
-}
-

Reply via email to