Skip to content

Commit 71a2d01

Browse files
committed
fix copilot findings
1 parent 22fb1ec commit 71a2d01

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

integration_test.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ for group in "${!BUILD_TARGET_GROUPS[@]}"; do
162162
done
163163

164164
# Append aggregate totals row to summary table
165-
echo "| TOTAL | | | ${overall_warn_total} | ${overall_depr_total} | |" >> "${SUMMARY_FILE}"# Display the full build summary explicitly at the end
165+
echo "| TOTAL | | | ${overall_warn_total} | ${overall_depr_total} | |" >> "${SUMMARY_FILE}"
166166
echo '::group::Build Summary'
167167
echo '=== Build Summary (echo) ==='
168168
cat "${SUMMARY_FILE}" || echo "(Could not read summary file ${SUMMARY_FILE})"
@@ -171,4 +171,5 @@ echo '::endgroup::'
171171
# Report to GitHub Actions if any build group failed
172172
if [[ ${any_failed} -eq 1 ]]; then
173173
echo "::error::One or more build groups failed. See summary above."
174+
exit 1
174175
fi

0 commit comments

Comments
 (0)