This is an automated email from the ASF dual-hosted git repository.
gnodet pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel.git
The following commit(s) were added to refs/heads/main by this push:
new aded85879aac chore(ci): enable integration tests in incremental builds
(#21899)
aded85879aac is described below
commit aded85879aac696e5bbd4f7d28b64c7ed477e9b1
Author: Guillaume Nodet <[email protected]>
AuthorDate: Tue Mar 10 11:00:08 2026 +0100
chore(ci): enable integration tests in incremental builds (#21899)
---
.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