1 | ## @file
|
---|
2 | # CI configuration for SecurityPkg
|
---|
3 | #
|
---|
4 | # Copyright (c) Microsoft Corporation
|
---|
5 | # SPDX-License-Identifier: BSD-2-Clause-Patent
|
---|
6 | ##
|
---|
7 | {
|
---|
8 | "CompilerPlugin": {
|
---|
9 | "DscPath": "SecurityPkg.dsc"
|
---|
10 | },
|
---|
11 | "CharEncodingCheck": {
|
---|
12 | "IgnoreFiles": []
|
---|
13 | },
|
---|
14 | "DependencyCheck": {
|
---|
15 | "AcceptableDependencies": [
|
---|
16 | "MdePkg/MdePkg.dec",
|
---|
17 | "MdeModulePkg/MdeModulePkg.dec",
|
---|
18 | "SecurityPkg/SecurityPkg.dec",
|
---|
19 | "CryptoPkg/CryptoPkg.dec"
|
---|
20 | ],
|
---|
21 | # For host based unit tests
|
---|
22 | "AcceptableDependencies-HOST_APPLICATION":[],
|
---|
23 | # For UEFI shell based apps
|
---|
24 | "AcceptableDependencies-UEFI_APPLICATION":[],
|
---|
25 | "IgnoreInf": []
|
---|
26 | },
|
---|
27 | "DscCompleteCheck": {
|
---|
28 | "DscPath": "SecurityPkg.dsc",
|
---|
29 | "IgnoreInf": []
|
---|
30 | },
|
---|
31 | "GuidCheck": {
|
---|
32 | "IgnoreGuidName": [],
|
---|
33 | "IgnoreGuidValue": ["00000000-0000-0000-0000-000000000000"],
|
---|
34 | "IgnoreFoldersAndFiles": [],
|
---|
35 | "IgnoreDuplicates": [
|
---|
36 | "Tpm2InstanceLibDTpm=gEfiTpmDeviceInstanceTpm20DtpmGuid", # by design
|
---|
37 | ]
|
---|
38 | },
|
---|
39 | "LibraryClassCheck": {
|
---|
40 | "IgnoreHeaderFile": []
|
---|
41 | },
|
---|
42 |
|
---|
43 | ## options defined ci/Plugin/SpellCheck
|
---|
44 | "SpellCheck": {
|
---|
45 | "AuditOnly": True, # Fails test but run in AuditOnly mode to collect log
|
---|
46 | "ExtendWords": [ # words to extend to the dictionary for this package
|
---|
47 | "shortformed", # tpm acpi
|
---|
48 | "autodetect",
|
---|
49 | "blocksid",
|
---|
50 | "comid",
|
---|
51 | "cpinsidpin", #OpalSScV2
|
---|
52 | "ecdsa", # TPM
|
---|
53 | "ecschnorr", # TPM
|
---|
54 | "eisaid", # ACPI
|
---|
55 | "harddisk",
|
---|
56 | "hashall",
|
---|
57 | "hashto",
|
---|
58 | "kek's",
|
---|
59 | "lfanew", # PE/COFF
|
---|
60 | "pcrindex",
|
---|
61 | "pkglength",
|
---|
62 | "ppuser",
|
---|
63 | "preos",
|
---|
64 | "stclear",
|
---|
65 | "toctou",
|
---|
66 | "tpm's",
|
---|
67 | "tpmcmdbuflength",
|
---|
68 | "tpmcommlib",
|
---|
69 | "tpmnvvaluelength",
|
---|
70 | "wrlocked",
|
---|
71 | "xored"
|
---|
72 | ],
|
---|
73 | "IgnoreStandardPaths": [], # Standard Plugin defined paths that should be ignore
|
---|
74 | "AdditionalIncludePaths": [] # Additional paths to spell check (wildcards supported)
|
---|
75 | },
|
---|
76 |
|
---|
77 | "Defines": {
|
---|
78 | "BLD_*_CONTINUOUS_INTEGRATION": "TRUE",
|
---|
79 | }
|
---|
80 | }
|
---|