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/13 11:56:31 UTC

[camel] branch main updated: (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 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 bb87ac9923d (chores) ci: fixed missing core results table in summary
bb87ac9923d is described below

commit bb87ac9923d0e7bb127aebe5276247a59217ffed
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 f00d0d8d254..559e47c970d 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