This is an automated email from the ASF dual-hosted git repository. acosentino pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/camel.git
The following commit(s) were added to refs/heads/master by this push: new ab278c2 Removed Jenkinsifle for full pipeline: it takes too much time and it's not reliable ab278c2 is described below commit ab278c2f83b6bab2446e655118376b10eb329ae9 Author: Andrea Cosentino <anco...@gmail.com> AuthorDate: Thu Aug 27 08:13:23 2020 +0200 Removed Jenkinsifle for full pipeline: it takes too much time and it's not reliable --- Jenkinsfile.full.pipeline | 69 ----------------------------------------------- 1 file changed, 69 deletions(-) diff --git a/Jenkinsfile.full.pipeline b/Jenkinsfile.full.pipeline deleted file mode 100644 index 7407c06..0000000 --- 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 ?: 'JDK 1.8 (latest)' - -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/master', wait: true - build job: 'camel.daily.sb', wait: true - build job: 'camel.daily.karaf', wait: true - } - } - - } - - post { - always { - emailext( - subject: '${DEFAULT_SUBJECT}', - body: '${DEFAULT_CONTENT}', - recipientProviders: [[$class: 'CulpritsRecipientProvider']] - ) - } - } -} -