This is an automated email from the ASF dual-hosted git repository. pcongiusti pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel.git
commit 4f36199df714d67dd3f1fc7e35a250e8b5fcb4c6 Author: Pasquale Congiusti <[email protected]> AuthorDate: Fri Oct 24 12:04:58 2025 +0200 chore(ci): only test phase Otherwise install (which includes verify) launches also the integration tests --- .github/actions/incremental-build/incremental-build.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/actions/incremental-build/incremental-build.sh b/.github/actions/incremental-build/incremental-build.sh index e792657b1db9..be006e618d8c 100755 --- a/.github/actions/incremental-build/incremental-build.sh +++ b/.github/actions/incremental-build/incremental-build.sh @@ -151,14 +151,14 @@ function main() { for w in $pl; do echo "$w" done - $mavenBinary -l $log $MVND_OPTS install -pl "$pl" + $mavenBinary -l $log $MVND_OPTS test -pl "$pl" ret=$? else echo "Testing the affected projects and the projects that depend on them:" for w in $pl; do echo "$w" done - $mavenBinary -l $log $MVND_OPTS install -pl "$pl" -amd + $mavenBinary -l $log $MVND_OPTS test -pl "$pl" -amd ret=$? fi fi
