Avoid unnecessary notices

This commit is contained in:
Piotr Wójcik 2024-10-10 14:40:38 +02:00
commit 11e9581a25
2 changed files with 3 additions and 3 deletions

View file

@ -44,7 +44,7 @@ for script in ${NANO_SYSTEST_DIR}/*.sh; do
done
if [ $overall_status -eq 0 ]; then
echo "::notice::All systests passed"
echo "All systests passed"
else
echo "::error::Some systests failed"
exit 1

View file

@ -19,7 +19,7 @@ if [[ ${#reports[@]} -gt 0 ]]; then
issue_reported=true
done
else
echo "::notice::No report has been generated."
echo "No report has been generated."
fi
echo "issue_reported=${issue_reported}" >> $GITHUB_OUTPUT
@ -28,6 +28,6 @@ if $issue_reported; then
echo "::error::Issues were reported in the sanitizer report."
exit 1
else
echo "::notice::No issues found in the sanitizer reports."
echo "No issues found in the sanitizer reports."
exit 0
fi