This is an automated email from the ASF dual-hosted git repository.
jamesnetherton pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git
The following commit(s) were added to refs/heads/main by this push:
new cafe688930 Display which modules were built in each native group for
incremental build
cafe688930 is described below
commit cafe688930d93128541c1ed843ff232403f39bf8
Author: James Netherton <[email protected]>
AuthorDate: Mon Jun 29 16:41:46 2026 +0100
Display which modules were built in each native group for incremental build
---
.github/workflows/ci-build.yaml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.github/workflows/ci-build.yaml b/.github/workflows/ci-build.yaml
index 823632b440..3fd864cca2 100644
--- a/.github/workflows/ci-build.yaml
+++ b/.github/workflows/ci-build.yaml
@@ -363,6 +363,12 @@ jobs:
echo "run-test-framework-tests=$(echo "$DATA" | jq -r
'.functionalTestScope.runTestFrameworkTests')" >> $GITHUB_OUTPUT
echo "run-tooling-tests=$(echo "$DATA" | jq -r
'.functionalTestScope.runToolingTests')" >> $GITHUB_OUTPUT
echo "run-catalog-tests=$(echo "$DATA" | jq -r
'.functionalTestScope.runCatalogTests')" >> $GITHUB_OUTPUT
+
+ {
+ echo "### Incremental Native Test Matrix"
+ echo ""
+ echo "$DATA" | jq -r '.nativeTestMatrix.include[] |
"**\(.name):** \(.modules | split(",") | map("`\(.)`") | join(", "))"'
+ } >> $GITHUB_STEP_SUMMARY
else
echo "Full build will be used"
echo "run-integration-tests-jvm=true" >> $GITHUB_OUTPUT