]> git.proxmox.com Git - mirror_edk2.git/blob - ShellPkg/ShellPkg.ci.yaml
ShellPkg/ShellPkg.ci.yaml: Add configuration for LicenseCheck
[mirror_edk2.git] / ShellPkg / ShellPkg.ci.yaml
1 ## @file
2 # CI configuration for ShellPkg
3 #
4 # Copyright (c) Microsoft Corporation
5 # SPDX-License-Identifier: BSD-2-Clause-Patent
6 ##
7 {
8 "LicenseCheck": {
9 "IgnoreFiles": []
10 },
11 "CompilerPlugin": {
12 "DscPath": "ShellPkg.dsc"
13 },
14 "CharEncodingCheck": {
15 "IgnoreFiles": []
16 },
17 "DependencyCheck": {
18 "AcceptableDependencies": [
19 "MdePkg/MdePkg.dec",
20 "MdeModulePkg/MdeModulePkg.dec",
21 "ShellPkg/ShellPkg.dec",
22 "NetworkPkg/NetworkPkg.dec"
23 ],
24 # For host based unit tests
25 "AcceptableDependencies-HOST_APPLICATION":[],
26 # For UEFI shell based apps
27 "AcceptableDependencies-UEFI_APPLICATION":[],
28 "IgnoreInf": []
29 },
30 "DscCompleteCheck": {
31 "DscPath": "ShellPkg.dsc",
32 "IgnoreInf": [
33 "ShellPkg/Application/ShellCTestApp/ShellCTestApp.inf",
34 "ShellPkg/Application/ShellExecTestApp/SA.inf",
35 "ShellPkg/Application/ShellSortTestApp/ShellSortTestApp.inf"
36 ]
37 },
38 "GuidCheck": {
39 "IgnoreGuidName": [],
40 "IgnoreGuidValue": [],
41 "IgnoreFoldersAndFiles": [],
42 "IgnoreDuplicates": [
43 "Shell=gUefiShellFileGuid", # by design
44 ]
45 },
46 "LibraryClassCheck": {
47 "IgnoreHeaderFile": []
48 },
49
50 ## options defined ci/Plugin/SpellCheck
51 "SpellCheck": {
52 "AuditOnly": True, # Fails test but run in AuditOnly mode to collect log
53 "IgnoreFiles": [], # use gitignore syntax to ignore errors in matching files
54 "ExtendWords": [], # words to extend to the dictionary for this package
55 "IgnoreStandardPaths": [], # Standard Plugin defined paths that should be ignore
56 "AdditionalIncludePaths": [] # Additional paths to spell check (wildcards supported)
57 }
58 }