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:41 UTC

[camel-spring-boot] branch camel-spring-boot-3.20.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.20.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.20.x by this push:
     new fb3c670c6d9 CI job for SB deploy should use LTS branches and not only main
fb3c670c6d9 is described below

commit fb3c670c6d9bc70d6c448f31eca87dee045b3c3c
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 a7374c88572..db08ed0f036 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"