You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by or...@apache.org on 2022/10/18 11:32:19 UTC

[camel] 14/21: (chores) ci: fixed missing core results table in summary

This is an automated email from the ASF dual-hosted git repository.

orpiske pushed a commit to branch camel-3.18.x
in repository https://gitbox.apache.org/repos/asf/camel.git

commit b859b2c7a64023edd7ebd3b2ba12e5eafd82c7e7
Author: Otavio Rodolfo Piske <an...@gmail.com>
AuthorDate: Thu Oct 13 13:56:14 2022 +0200

    (chores) ci: fixed missing core results table in summary
---
 .github/actions/quick-test/quick-test.sh | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/.github/actions/quick-test/quick-test.sh b/.github/actions/quick-test/quick-test.sh
index c063539ab5a..b0c920d80be 100755
--- a/.github/actions/quick-test/quick-test.sh
+++ b/.github/actions/quick-test/quick-test.sh
@@ -96,6 +96,9 @@ function componentTest() {
 }
 
 function coreTest() {
+  echo "| Core | Result |" >> $GITHUB_STEP_SUMMARY
+  echo "| --- | --- |" >> $GITHUB_STEP_SUMMARY
+
   cd "core"
   runTest "core" "1" "1"
 }
@@ -135,6 +138,7 @@ function main() {
   echo "It will test the following ${total} components:"
   echo "${components}"
 
+  echo "" >> $GITHUB_STEP_SUMMARY
   echo "| Component | Result |" >> $GITHUB_STEP_SUMMARY
   echo "| --- | --- |" >> $GITHUB_STEP_SUMMARY
   current=0