[CI] Fix ci-pr

Fixes #468
This commit is contained in:
Corneil du Plessis
2023-06-06 20:54:54 +02:00
parent 3fed48902f
commit 97d13e2a65

View File

@@ -95,7 +95,7 @@ jobs:
# Module with no / are probably a root module that contains other modules and will trigger a lot of dependant builds without real value
echo "::info ::building $ROOT_MODULES"
echo "::debug ::MAVEN:./mvnw $MAVEN_OPTS -pl $ROOT_MODULES install"
./mvnw $MAVEN_OPTS -pl $ROOT_MODULES install
./mvnw $MAVEN_OPTS -pl $ROOT_MODULES install -Pintegration
RC=$?
if ((RC!=0)); then
exit $RC
@@ -104,7 +104,7 @@ jobs:
if [ "$FOLDERS" != "" ]; then
echo "::info ::verify $FOLDERS and dependents"
echo "::debug ::MAVEN:./mvnw $MAVEN_OPTS -amd -pl $FOLDERS install"
./mvnw $MAVEN_OPTS -amd -pl $FOLDERS install
./mvnw $MAVEN_OPTS -amd -pl $FOLDERS install -Pintegration
RC=$?
if ((RC!=0)); then
exit $RC