diff --git a/.github/actions/component-test/component-test.sh b/.github/actions/component-test/component-test.sh index eb79f13ca4fd1..50df28b8de1df 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 }