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/09/28 10:23:34 UTC

[camel] branch master updated: Revert "Removing the Website update step from Jenkinsfile, we have a predefined job for that"

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 8542e43  Revert "Removing the Website update step from Jenkinsfile, we have a predefined job for that"
8542e43 is described below

commit 8542e433af8a2e2ea452911a4a6768171b269323
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Mon Sep 28 12:22:54 2020 +0200

    Revert "Removing the Website update step from Jenkinsfile, we have a predefined job for that"
    
    This reverts commit c73b172988cf7c2f9fa9ca49e01655f5ec5bd42e.
---
 Jenkinsfile | 11 +++++++++++
 1 file changed, 11 insertions(+)

diff --git a/Jenkinsfile b/Jenkinsfile
index 996101f..a30af7b 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -54,6 +54,17 @@ pipeline {
             }
         }
 
+        stage('Website update') {
+            when {
+                branch 'master'
+                changeset 'docs/**/*'
+            }
+
+            steps {
+                build job: 'Camel.website/master', wait: false
+            }
+        }
+
         stage('Checks') {
             steps {
                 sh "./mvnw $MAVEN_PARAMS -pl :camel-buildtools install"