This is an automated email from the ASF dual-hosted git repository.
fmariani 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 53ba51a5e18b Skip Integration tests on new github PRs
53ba51a5e18b is described below
commit 53ba51a5e18bd5989ecc50117ffabf8183b6a29e
Author: Croway <[email protected]>
AuthorDate: Fri Nov 21 10:09:06 2025 +0100
Skip Integration tests on new github PRs
---
.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 625c2c093c67..6cef654a1ca1 100755
--- a/.github/actions/incremental-build/incremental-build.sh
+++ b/.github/actions/incremental-build/incremental-build.sh
@@ -152,7 +152,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 -pl "$pl"
+ $mavenBinary -l $log $MVND_OPTS install -DskipITs -pl "$pl"
ret=$?
else
echo "Testing the affected projects and the projects that depend on
them:"
@@ -160,7 +160,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 -pl "$pl" -amd
+ $mavenBinary -l $log $MVND_OPTS install -DskipITs -pl "$pl" -amd
ret=$?
fi
fi