This is an automated email from the ASF dual-hosted git repository. gnodet pushed a commit to branch ci/enable-integration-tests in repository https://gitbox.apache.org/repos/asf/camel.git
commit df74f3f384b68ded904504c727e04696364e2f83 Author: Guillaume Nodet <[email protected]> AuthorDate: Tue Mar 10 10:24:52 2026 +0100 chore(ci): enable integration tests in incremental builds Co-Authored-By: Claude Opus 4.6 <[email protected]> --- .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 f96a19ce5796..8b5858398866 100755 --- a/.github/actions/incremental-build/incremental-build.sh +++ b/.github/actions/incremental-build/incremental-build.sh @@ -154,7 +154,7 @@ function main() { echo "$w" done # This need to install, other commands like test are not enough, otherwise test-infra will fail due to jandex maven plugin - $mavenBinary -l $log $MVND_OPTS install -DskipITs -pl "$pl" + $mavenBinary -l $log $MVND_OPTS install -pl "$pl" ret=$? else echo "Testing the affected projects and the projects that depend on them:" @@ -162,7 +162,7 @@ function main() { echo "$w" done # This need to install, other commands like test are not enough, otherwise test-infra will fail due to jandex maven plugin - $mavenBinary -l $log $MVND_OPTS install -DskipITs -pl "$pl" -amd + $mavenBinary -l $log $MVND_OPTS install -pl "$pl" -amd ret=$? fi fi
