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