]> git.proxmox.com Git - mirror_edk2.git/blob - CryptoPkg/CryptoPkg.ci.yaml
CryptoPkg/CryptoPkg.ci.yaml: Add configuration for Ecc check
[mirror_edk2.git] / CryptoPkg / CryptoPkg.ci.yaml
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 ]
23 },
24 "CompilerPlugin": {
25 "DscPath": "CryptoPkg.dsc"
26 },
27 "CharEncodingCheck": {
28 "IgnoreFiles": []
29 },
30 "DependencyCheck": {
31 "AcceptableDependencies": [
32 "MdePkg/MdePkg.dec",
33 "MdeModulePkg/MdeModulePkg.dec",
34 "CryptoPkg/CryptoPkg.dec",
35 ],
36 # For host based unit tests
37 "AcceptableDependencies-HOST_APPLICATION":[],
38 # For UEFI shell based apps
39 "AcceptableDependencies-UEFI_APPLICATION":[],
40 "IgnoreInf": []
41 },
42 "DscCompleteCheck": {
43 "DscPath": "CryptoPkg.dsc",
44 "IgnoreInf": []
45 },
46 "GuidCheck": {
47 "IgnoreGuidName": [],
48 "IgnoreGuidValue": [],
49 "IgnoreFoldersAndFiles": []
50 },
51 "LibraryClassCheck": {
52 "IgnoreHeaderFile": []
53 },
54
55 ## options defined ci/Plugin/SpellCheck
56 "SpellCheck": {
57 "skip": True,
58 "IgnoreFiles": [], # use gitignore syntax to ignore errors in matching files
59 "ExtendWords": [], # words to extend to the dictionary for this package
60 "IgnoreStandardPaths": [], # Standard Plugin defined paths that should be ignore
61 "AdditionalIncludePaths": [] # Additional paths to spell check (wildcards supported)
62 }
63 }