diff options
author | Michael D Kinney <michael.d.kinney@intel.com> | 2021-11-23 12:58:22 -0800 |
---|---|---|
committer | mergify[bot] <37929162+mergify[bot]@users.noreply.github.com> | 2021-11-30 14:19:07 +0000 |
commit | d5744ecba813b27d51f8eeb232e34e13da781c6b (patch) | |
tree | 8c7bd640fa9b50e78a0b30785e7fa85fdc843b80 /CryptoPkg/CryptoPkg.ci.yaml | |
parent | c97fee87f0f9026b13583f2a6d64798b462def8d (diff) | |
download | edk2-d5744ecba813b27d51f8eeb232e34e13da781c6b.tar.gz |
CryptoPkg: Update YAML to ignore specific ECC files/errors
REF: https://bugzilla.tianocore.org/show_bug.cgi?id=3749
Update package YAML files to ignore ECC errors that are
already present. These issues must be fixed in the future,
but should not block source code changes for these known
issues.
Cc: Jiewen Yao <jiewen.yao@intel.com>
Cc: Jian J Wang <jian.j.wang@intel.com>
Cc: Xiaoyu Lu <xiaoyux.lu@intel.com>
Cc: Guomin Jiang <guomin.jiang@intel.com>
Cc: Sean Brogan <sean.brogan@microsoft.com>
Cc: Bret Barkelew <Bret.Barkelew@microsoft.com>
Cc: Liming Gao <gaoliming@byosoft.com.cn>
Cc: Michael Kubacki <michael.kubacki@microsoft.com>
Signed-off-by: Michael D Kinney <michael.d.kinney@intel.com>
Reviewed-by: Jian J Wang <jian.j.wang@intel.com>
Reviewed-by: Jiewen Yao <Jiewen.yao@intel.com>
Diffstat (limited to 'CryptoPkg/CryptoPkg.ci.yaml')
-rw-r--r-- | CryptoPkg/CryptoPkg.ci.yaml | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/CryptoPkg/CryptoPkg.ci.yaml b/CryptoPkg/CryptoPkg.ci.yaml index 1448299073..eeb388ae71 100644 --- a/CryptoPkg/CryptoPkg.ci.yaml +++ b/CryptoPkg/CryptoPkg.ci.yaml @@ -19,6 +19,9 @@ ## "<ErrorID>", "<KeyWord>"
## ]
"ExceptionList": [
+ "8001", "IsLeap",
+ "8001", "OBJ_get0_data",
+ "8001", "OBJ_length"
],
## Both file path and directory path are accepted.
"IgnoreFiles": [
@@ -26,14 +29,15 @@ # The unit testing folder is not to be checked
"Test/UnitTest",
# This has OpenSSL interfaces that aren't UEFI spec compliant
- "Library/BaseCryptLib/SysCall/UnitTestHostCrtWrapper.c",
+ "Library/BaseCryptLib/SysCall",
# This has OpenSSL interfaces that aren't UEFI spec compliant
"Library/OpensslLib/rand_pool.c",
# This has OpenSSL interfaces that aren't UEFI spec compliant
"Library/Include/CrtLibSupport.h",
# These directories contain auto-generated OpenSSL content
- "Library/OpensslLib/X64",
- "Library/OpensslLib/X64Gcc"
+ "Library/OpensslLib",
+ "Library/IntrinsicLib",
+ "Library/BaseCryptLib/Pk/CryptPkcs7VerifyBase.c"
]
},
"CompilerPlugin": {
|