Skip to content

Commit

Permalink
component-test - add maven options to command
Browse files Browse the repository at this point in the history
  • Loading branch information
essobedo committed May 31, 2023
1 parent 0287c52 commit 393da7f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/actions/component-test/component-test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
}

Expand Down

0 comments on commit 393da7f

Please sign in to comment.