ci(static-checks): update the notification message for newly added files
Improving the existing message to provide a better clarity to the patch
owners on the action to be taken while introducing new source files.
Signed-off-by: Jayanth Dodderi Chidanand <jayanthdodderi.chidanand@arm.com>
Change-Id: I802defbe84ab96ba4a71547aecd9c6273796b58b
diff --git a/script/static-checks/static-checks-detect-newly-added-files.sh b/script/static-checks/static-checks-detect-newly-added-files.sh
index a0e6619..5ddf041 100755
--- a/script/static-checks/static-checks-detect-newly-added-files.sh
+++ b/script/static-checks/static-checks-detect-newly-added-files.sh
@@ -1,6 +1,6 @@
#!/usr/bin/env bash
#
-# Copyright (c) 2021 Arm Limited. All rights reserved.
+# Copyright (c) 2022 Arm Limited. All rights reserved.
#
# SPDX-License-Identifier: BSD-3-Clause
#
@@ -34,13 +34,18 @@
done < "$TFA_PATCH_NEWFILES_LIST"
echo | tee -a "$LOG_FILE"
- echo -e "1. Kindly ensure they are updated in the \"tf-cov-make\" build script as well to \n\
- consider them for Coverity Scan analysis. Please refer to the tf-a documentation \n\
- \"$DOC_URL\" \n for more detailed explanation on adding your new build configurations." \
- | tee -a "$LOG_FILE"
+ echo -e "1. Kindly ensure these newly added source files are covered by : \n\
+ a. Coverity scan analysis by adding them to \"tf-cov-make\" build script with \
+the appropriate build configurations. \n\
+ b. Built as part of one of the platform configurations present in \"tf-l1-build-plat\" \
+test group." | tee -a "$LOG_FILE"
echo | tee -a "$LOG_FILE"
- echo -e "2. Please ignore if files are already updated. Further the Code Maintainer will \n\
+ echo -e " Please refer to the tf-a documentation for more detailed explanation. \n\
+ \"$DOC_URL\"" | tee -a "$LOG_FILE"
+
+ echo | tee -a "$LOG_FILE"
+ echo -e "2. Please ignore if your files are already updated. Further the Code Maintainer will \n\
resolve the issue by taking appropriate action." | tee -a "$LOG_FILE"
echo "==============================================================================="