From 97d13e2a656976d536cc26bdcd9917f4736f0208 Mon Sep 17 00:00:00 2001 From: Corneil du Plessis Date: Tue, 6 Jun 2023 20:54:54 +0200 Subject: [PATCH] [CI] Fix ci-pr Fixes #468 --- .github/workflows/ci-pr.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci-pr.yml b/.github/workflows/ci-pr.yml index 98025a6f..0d8d4447 100644 --- a/.github/workflows/ci-pr.yml +++ b/.github/workflows/ci-pr.yml @@ -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