From 11e9581a25d89b6eff2325839c5f21fbfa63c473 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Piotr=20Wo=CC=81jcik?= <3044353+pwojcikdev@users.noreply.github.com> Date: Thu, 10 Oct 2024 14:40:38 +0200 Subject: [PATCH] Avoid unnecessary notices --- ci/tests/run-system-tests.sh | 2 +- ci/tests/show-sanitizer-reports.sh | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/ci/tests/run-system-tests.sh b/ci/tests/run-system-tests.sh index 496fad7f..4027e15a 100755 --- a/ci/tests/run-system-tests.sh +++ b/ci/tests/run-system-tests.sh @@ -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 diff --git a/ci/tests/show-sanitizer-reports.sh b/ci/tests/show-sanitizer-reports.sh index ba4f92d6..f29e6db7 100755 --- a/ci/tests/show-sanitizer-reports.sh +++ b/ci/tests/show-sanitizer-reports.sh @@ -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 \ No newline at end of file