diff options
author | Shenglei Zhang <shenglei.zhang@intel.com> | 2020-06-10 14:14:05 +0800 |
---|---|---|
committer | mergify[bot] <37929162+mergify[bot]@users.noreply.github.com> | 2020-08-17 03:28:09 +0000 |
commit | f04e7547cdf7249ef466b4f3024ddf06a055b6b9 (patch) | |
tree | 0d40c09acaeb1ad242cb2c242011ed04c2717634 /MdePkg/MdePkg.ci.yaml | |
parent | d05ff36c20a60a3f6397c2bfb3c5822a3db34d64 (diff) | |
download | edk2-f04e7547cdf7249ef466b4f3024ddf06a055b6b9.tar.gz |
MdePkg/MdePkg.ci.yaml: Add configuration for Ecc check
Add configuration ExceptionList and IgnoreFiles for package config
files. So users can rely on this to ignore some Ecc issues.
Cc: Michael D Kinney <michael.d.kinney@intel.com>
Cc: Liming Gao <liming.gao@intel.com>
Signed-off-by: Shenglei Zhang <shenglei.zhang@intel.com>
Reviewed-by: Liming Gao <liming.gao@intel.com>
Diffstat (limited to 'MdePkg/MdePkg.ci.yaml')
-rw-r--r-- | MdePkg/MdePkg.ci.yaml | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/MdePkg/MdePkg.ci.yaml b/MdePkg/MdePkg.ci.yaml index b088a43449..15931eacca 100644 --- a/MdePkg/MdePkg.ci.yaml +++ b/MdePkg/MdePkg.ci.yaml @@ -2,6 +2,7 @@ # CI configuration for MdePkg
#
# Copyright (c) Microsoft Corporation
+# Copyright (c) 2020, Intel Corporation. All rights reserved.<BR>
# SPDX-License-Identifier: BSD-2-Clause-Patent
##
{
@@ -9,6 +10,17 @@ "LicenseCheck": {
"IgnoreFiles": []
},
+ "EccCheck": {
+ ## Exception sample looks like below:
+ ## "ExceptionList": [
+ ## "<ErrorID>", "<KeyWord>"
+ ## ]
+ "ExceptionList": [
+ ],
+ ## Both file path and directory path are accepted.
+ "IgnoreFiles": [
+ ]
+ },
## options defined ci/Plugin/CompilerPlugin
"CompilerPlugin": {
"DscPath": "MdePkg.dsc"
|