You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ac...@apache.org on 2020/10/09 12:55:02 UTC

[camel] branch master updated (6b06915 -> 1449019)

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

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


    from 6b06915  Jenkinsfile: Fixed camel.website job ref
     new a8566ea  Revert "Removed Jenkinsifle for full pipeline: it takes too much time and it's not reliable"
     new 1449019  Jenkinsfile.full.pipeline: Correct jobs refs

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 Jenkinsfile.deploy => Jenkinsfile.full.pipeline | 23 +++++------------------
 1 file changed, 5 insertions(+), 18 deletions(-)
 copy Jenkinsfile.deploy => Jenkinsfile.full.pipeline (74%)


[camel] 01/02: Revert "Removed Jenkinsifle for full pipeline: it takes too much time and it's not reliable"

Posted by ac...@apache.org.
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

commit a8566ea585371c547e5e5fc995379fe54f9ccac2
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Fri Oct 9 14:49:03 2020 +0200

    Revert "Removed Jenkinsifle for full pipeline: it takes too much time and it's not reliable"
    
    This reverts commit ab278c2f83b6bab2446e655118376b10eb329ae9.
---
 Jenkinsfile.full.pipeline | 69 +++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 69 insertions(+)

diff --git a/Jenkinsfile.full.pipeline b/Jenkinsfile.full.pipeline
new file mode 100644
index 0000000..7407c06
--- /dev/null
+++ b/Jenkinsfile.full.pipeline
@@ -0,0 +1,69 @@
+/*
+ * 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']]
+            )
+        }
+    }
+}
+


[camel] 02/02: Jenkinsfile.full.pipeline: Correct jobs refs

Posted by ac...@apache.org.
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

commit 1449019b08a569c9cee89548b3503f07ce750567
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Fri Oct 9 14:54:17 2020 +0200

    Jenkinsfile.full.pipeline: Correct jobs refs
---
 Jenkinsfile.full.pipeline | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/Jenkinsfile.full.pipeline b/Jenkinsfile.full.pipeline
index 7407c06..eebb887 100644
--- a/Jenkinsfile.full.pipeline
+++ b/Jenkinsfile.full.pipeline
@@ -48,9 +48,9 @@ pipeline {
         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
+                build job: 'Camel/Apache Camel/master/', wait: true
+                build job: 'Camel/Camel-Karaf Daily/master/', wait: true
+                build job: 'Camel/Camel-Spring-Boot Daily/master', wait: true
             }
         }