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

fmariani pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel.git


The following commit(s) were added to refs/heads/main by this push:
     new 048fc085676f Add camel launcher version arg into the container
048fc085676f is described below

commit 048fc085676f95189d40568154af168146688feb
Author: Jakub Vrubel <[email protected]>
AuthorDate: Fri Feb 20 09:09:13 2026 +0100

    Add camel launcher version arg into the container
---
 .../org/apache/camel/test/infra/cli/services/CliBuiltContainer.java     | 2 ++
 1 file changed, 2 insertions(+)

diff --git 
a/test-infra/camel-test-infra-cli/src/test/java/org/apache/camel/test/infra/cli/services/CliBuiltContainer.java
 
b/test-infra/camel-test-infra-cli/src/test/java/org/apache/camel/test/infra/cli/services/CliBuiltContainer.java
index 2dee9d5b2b7b..bbdf855b6457 100644
--- 
a/test-infra/camel-test-infra-cli/src/test/java/org/apache/camel/test/infra/cli/services/CliBuiltContainer.java
+++ 
b/test-infra/camel-test-infra-cli/src/test/java/org/apache/camel/test/infra/cli/services/CliBuiltContainer.java
@@ -43,6 +43,7 @@ public class CliBuiltContainer extends 
GenericContainer<CliBuiltContainer> {
     private static final String CAMEL_REF_ARG = "CAMEL_REF";
     private static final String CAMEL_REPO_ARG = "CAMEL_REPO";
     private static final String CAMEL_JBANG_VERSION_ARG = 
"CAMEL_JBANG_VERSION";
+    private static final String CAMEL_LAUNCHER_VERSION_ARG = 
"CAMEL_LAUNCHER_VERSION";
     private static final String KEEP_RUNNING_ARG = "KEEP_RUNNING";
     private static final String MOUNT_POINT = "/deployments/data";
     private static final String SSH_PASSWORD_ARG = "SSH_PASSWORD_ARG";
@@ -90,6 +91,7 @@ public class CliBuiltContainer extends 
GenericContainer<CliBuiltContainer> {
                 .withBuildArg(SSH_PASSWORD_ARG, params.getSshPassword())
                 .withBuildArg(CAMEL_REPO_ARG, params.getCamelRepo())
                 .withBuildArg(CAMEL_JBANG_VERSION_ARG, 
params.getCamelJBangVersion())
+                .withBuildArg(CAMEL_LAUNCHER_VERSION_ARG, 
params.getCamelJBangVersion())
                 .withBuildArg(UID_ARG, String.valueOf(UID))
                 .withBuildArg(GID_ARG, String.valueOf(GID)));
         this.sshPassword = params.getSshPassword();

Reply via email to