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

[camel] branch main updated (3e1b43ab760 -> 393da7fa588)

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

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


    omit 3e1b43ab760 component-test - add maven options to command
     new 393da7fa588 component-test - add maven options to command

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (3e1b43ab760)
            \
             N -- N -- N   refs/heads/main (393da7fa588)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .github/actions/component-test/action.yaml | 2 ++
 1 file changed, 2 insertions(+)


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

Posted by nf...@apache.org.
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
 }