You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by da...@apache.org on 2023/07/30 16:04:59 UTC

[camel-spring-boot] branch camel-spring-boot-3.14.x updated: CI job for SB deploy should use LTS branches and not only main

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

davsclaus pushed a commit to branch camel-spring-boot-3.14.x
in repository https://gitbox.apache.org/repos/asf/camel-spring-boot.git


The following commit(s) were added to refs/heads/camel-spring-boot-3.14.x by this push:
     new cfda8811a73 CI job for SB deploy should use LTS branches and not only main
cfda8811a73 is described below

commit cfda8811a73eb4224448189ac0816c9170eb5cb5
Author: Claus Ibsen <cl...@gmail.com>
AuthorDate: Sun Jul 30 18:03:58 2023 +0200

    CI job for SB deploy should use LTS branches and not only main
---
 Jenkinsfile.sb.deploy | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/Jenkinsfile.sb.deploy b/Jenkinsfile.sb.deploy
index 0bf8bcc1a23..6e79483231d 100644
--- a/Jenkinsfile.sb.deploy
+++ b/Jenkinsfile.sb.deploy
@@ -54,7 +54,13 @@ pipeline {
 
         stage('Build & Deploy') {
             when {
-                branch 'main'
+                anyOf {
+                    branch 'main'
+                    branch 'camel-spring-boot-3.x'
+                    branch 'camel-spring-boot-3.21.x'
+                    branch 'camel-spring-boot-3.20.x'
+                    branch 'camel-spring-boot-3.14.x'
+                }
             }
             steps {
                 sh "./mvnw $MAVEN_PARAMS -Pdeploy -Dmaven.test.skip.exec=true clean deploy"