1 | ## @file
|
---|
2 | # CI configuration for CryptoPkg
|
---|
3 | #
|
---|
4 | # Copyright (c) Microsoft Corporation
|
---|
5 | # Copyright (c) 2020, Intel Corporation. All rights reserved.<BR>
|
---|
6 | # SPDX-License-Identifier: BSD-2-Clause-Patent
|
---|
7 | ##
|
---|
8 | {
|
---|
9 | "LicenseCheck": {
|
---|
10 | "IgnoreFiles": []
|
---|
11 | },
|
---|
12 | "EccCheck": {
|
---|
13 | ## Exception sample looks like below:
|
---|
14 | ## "ExceptionList": [
|
---|
15 | ## "<ErrorID>", "<KeyWord>"
|
---|
16 | ## ]
|
---|
17 | "ExceptionList": [
|
---|
18 | ],
|
---|
19 | ## Both file path and directory path are accepted.
|
---|
20 | "IgnoreFiles": [
|
---|
21 | "Library/OpensslLib/openssl",
|
---|
22 | # The unit testing folder is not to be checked
|
---|
23 | "Test/UnitTest",
|
---|
24 | # This has OpenSSL interfaces that aren't UEFI spec compliant
|
---|
25 | "Library/BaseCryptLib/SysCall/UnitTestHostCrtWrapper.c",
|
---|
26 | # this has OpenSSL interfaces that aren't UEFI spec compliant
|
---|
27 | "Library/OpensslLib/rand_pool.c"
|
---|
28 | ]
|
---|
29 | },
|
---|
30 | "CompilerPlugin": {
|
---|
31 | "DscPath": "CryptoPkg.dsc"
|
---|
32 | },
|
---|
33 | ## options defined .pytool/Plugin/HostUnitTestCompilerPlugin
|
---|
34 | "HostUnitTestCompilerPlugin": {
|
---|
35 | "DscPath": "Test/CryptoPkgHostUnitTest.dsc"
|
---|
36 | },
|
---|
37 | "CharEncodingCheck": {
|
---|
38 | "IgnoreFiles": []
|
---|
39 | },
|
---|
40 | "DependencyCheck": {
|
---|
41 | "AcceptableDependencies": [
|
---|
42 | "MdePkg/MdePkg.dec",
|
---|
43 | "MdeModulePkg/MdeModulePkg.dec",
|
---|
44 | "CryptoPkg/CryptoPkg.dec",
|
---|
45 | ],
|
---|
46 | # For host based unit tests
|
---|
47 | "AcceptableDependencies-HOST_APPLICATION":[],
|
---|
48 | # For UEFI shell based apps
|
---|
49 | "AcceptableDependencies-UEFI_APPLICATION":[],
|
---|
50 | "IgnoreInf": []
|
---|
51 | },
|
---|
52 | "DscCompleteCheck": {
|
---|
53 | "DscPath": "CryptoPkg.dsc",
|
---|
54 | "IgnoreInf": []
|
---|
55 | },
|
---|
56 | "GuidCheck": {
|
---|
57 | "IgnoreGuidName": [],
|
---|
58 | "IgnoreGuidValue": [],
|
---|
59 | "IgnoreFoldersAndFiles": []
|
---|
60 | },
|
---|
61 | "LibraryClassCheck": {
|
---|
62 | "IgnoreHeaderFile": []
|
---|
63 | },
|
---|
64 |
|
---|
65 | ## options defined ci/Plugin/SpellCheck
|
---|
66 | "SpellCheck": {
|
---|
67 | "skip": True,
|
---|
68 | "IgnoreFiles": [], # use gitignore syntax to ignore errors in matching files
|
---|
69 | "ExtendWords": [], # words to extend to the dictionary for this package
|
---|
70 | "IgnoreStandardPaths": [], # Standard Plugin defined paths that should be ignore
|
---|
71 | "AdditionalIncludePaths": [] # Additional paths to spell check (wildcards supported)
|
---|
72 | }
|
---|
73 | }
|
---|