1 | ## @file
|
---|
2 | # Core CI configuration for OvmfPkg
|
---|
3 | #
|
---|
4 | # OvmfPkg is part of Platform Ci for builds so this is only
|
---|
5 | # used for code analysis.
|
---|
6 | #
|
---|
7 | # Copyright (c) Microsoft Corporation
|
---|
8 | # SPDX-License-Identifier: BSD-2-Clause-Patent
|
---|
9 | ##
|
---|
10 | {
|
---|
11 | ## options defined .pytool/Plugin/CompilerPlugin
|
---|
12 | "CompilerPlugin": {
|
---|
13 | "DscPath": "" # Don't support this test
|
---|
14 | },
|
---|
15 |
|
---|
16 | ## options defined .pytool/Plugin/HostUnitTestCompilerPlugin
|
---|
17 | "HostUnitTestCompilerPlugin": {
|
---|
18 | "DscPath": "" # Don't support this test
|
---|
19 | },
|
---|
20 |
|
---|
21 | ## options defined .pytool/Plugin/CharEncodingCheck
|
---|
22 | "CharEncodingCheck": {
|
---|
23 | "IgnoreFiles": []
|
---|
24 | },
|
---|
25 |
|
---|
26 | ## options defined .pytool/Plugin/DependencyCheck
|
---|
27 | "DependencyCheck": {
|
---|
28 | "AcceptableDependencies": [
|
---|
29 | "MdePkg/MdePkg.dec",
|
---|
30 | "MdeModulePkg/MdeModulePkg.dec",
|
---|
31 | "OvmfPkg/OvmfPkg.dec",
|
---|
32 | "NetworkPkg/NetworkPkg.dec",
|
---|
33 | "SecurityPkg/SecurityPkg.dec",
|
---|
34 | "UefiCpuPkg/UefiCpuPkg.dec",
|
---|
35 | "ShellPkg/ShellPkg.dec",
|
---|
36 | "EmbeddedPkg/EmbeddedPkg.dec",
|
---|
37 | "SourceLevelDebugPkg/SourceLevelDebugPkg.dec"
|
---|
38 | ],
|
---|
39 | # For host based unit tests
|
---|
40 | "AcceptableDependencies-HOST_APPLICATION":[
|
---|
41 | "UnitTestFrameworkPkg/UnitTestFrameworkPkg.dec"
|
---|
42 | ],
|
---|
43 | # For UEFI shell based apps
|
---|
44 | "AcceptableDependencies-UEFI_APPLICATION":[],
|
---|
45 | "IgnoreInf": []
|
---|
46 | },
|
---|
47 |
|
---|
48 | ## options defined .pytool/Plugin/DscCompleteCheck
|
---|
49 | "DscCompleteCheck": {
|
---|
50 | "IgnoreInf": [""],
|
---|
51 | "DscPath": "" # Don't support this test
|
---|
52 | },
|
---|
53 |
|
---|
54 | ## options defined .pytool/Plugin/HostUnitTestDscCompleteCheck
|
---|
55 | "HostUnitTestDscCompleteCheck": {
|
---|
56 | "IgnoreInf": [""],
|
---|
57 | "DscPath": "" # Don't support this test
|
---|
58 | },
|
---|
59 |
|
---|
60 | ## options defined .pytool/Plugin/GuidCheck
|
---|
61 | "GuidCheck": {
|
---|
62 | "IgnoreGuidName": ["ResetVector", "XenResetVector"], # Expected duplication for gEfiFirmwareVolumeTopFileGuid
|
---|
63 | "IgnoreGuidValue": [],
|
---|
64 | "IgnoreFoldersAndFiles": [],
|
---|
65 | "IgnoreDuplicates": [],
|
---|
66 | },
|
---|
67 |
|
---|
68 | ## options defined .pytool/Plugin/LibraryClassCheck
|
---|
69 | "LibraryClassCheck": {
|
---|
70 | "IgnoreHeaderFile": []
|
---|
71 | },
|
---|
72 |
|
---|
73 | ## options defined .pytool/Plugin/SpellCheck
|
---|
74 | "SpellCheck": {
|
---|
75 | "AuditOnly": True, # Fails right now with over 270 errors
|
---|
76 | "IgnoreFiles": [], # use gitignore syntax to ignore errors in matching files
|
---|
77 | "ExtendWords": [
|
---|
78 |
|
---|
79 | ], # words to extend to the dictionary for this package
|
---|
80 | "IgnoreStandardPaths": [], # Standard Plugin defined paths that should be ignore
|
---|
81 | "AdditionalIncludePaths": [] # Additional paths to spell check (wildcards supported)
|
---|
82 | }
|
---|
83 | }
|
---|