You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by nf...@apache.org on 2023/05/31 12:34:17 UTC

[camel] 01/01: component-test - add maven options to command

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

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

commit 393da7fa588d62908d44a4209be2413112d07dc5
Author: Nicolas Filotto <nf...@talend.com>
AuthorDate: Wed May 31 14:28:50 2023 +0200

    component-test - add maven options to command
---
 .github/actions/component-test/component-test.sh | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/actions/component-test/component-test.sh b/.github/actions/component-test/component-test.sh
index eb79f13ca4f..50df28b8de1 100755
--- a/.github/actions/component-test/component-test.sh
+++ b/.github/actions/component-test/component-test.sh
@@ -45,10 +45,10 @@ function main() {
 
   if [[ ${fastBuild} = "true" ]] ; then
     echo "Launching a fast build against the projects ${pl} and their dependencies"
-    $mavenBinary -l $log -Pfastinstall install -pl "$pl" -am
+    $mavenBinary -l $log $MVN_OPTS -Pfastinstall install -pl "$pl" -am
   else
     echo "Launching tests of the projects ${pl}"
-    $mavenBinary -l $log install -pl "$pl"
+    $mavenBinary -l $log $MVN_OPTS install -pl "$pl"
   fi
 }