Add CI config for MinPlatformPkg

This commit is contained in:
Bret Barkelew 2020-10-31 12:51:36 -07:00 коммит произвёл Ken Lautner
Родитель 7e07c136a2
Коммит db92368582
1 изменённых файлов: 100 добавлений и 0 удалений

Просмотреть файл

@ -0,0 +1,100 @@
## @file
# CI configuration for MinPlatformPkg
#
# Copyright (c) Microsoft Corporation
# Copyright (c) 2020, Intel Corporation. All rights reserved.<BR>
# SPDX-License-Identifier: BSD-2-Clause-Patent
##
{
## options defined .pytool/Plugin/LicenseCheck
"LicenseCheck": {
"IgnoreFiles": []
},
"EccCheck": {
## Exception sample looks like below:
## "ExceptionList": [
## "<ErrorID>", "<KeyWord>"
## ]
"ExceptionList": [
],
## Both file path and directory path are accepted.
"IgnoreFiles": [
]
},
## options defined .pytool/Plugin/CompilerPlugin
"CompilerPlugin": {
"DscPath": "MinPlatformPkg.dsc"
},
## options defined .pytool/Plugin/CharEncodingCheck
"CharEncodingCheck": {
"IgnoreFiles": [
]
},
## options defined .pytool/Plugin/DependencyCheck
"DependencyCheck": {
"AcceptableDependencies": [
"MdePkg/MdePkg.dec",
"MdeModulePkg/MdeModulePkg.dec",
"UefiCpuPkg/UefiCpuPkg.dec",
"PcAtChipsetPkg/PcAtChipsetPkg.dec",
"IntelFsp2Pkg/IntelFsp2Pkg.dec",
"MinPlatformPkg/MinPlatformPkg.dec",
"IntelFsp2WrapperPkg/IntelFsp2WrapperPkg.dec",
"SecurityPkg/SecurityPkg.dec",
"IntelSiliconPkg/IntelSiliconPkg.dec",
"CryptoPkg/CryptoPkg.dec"
],
# For host based unit tests
"AcceptableDependencies-HOST_APPLICATION":[
"UnitTestFrameworkPkg/UnitTestFrameworkPkg.dec"
],
# For UEFI shell based apps
"AcceptableDependencies-UEFI_APPLICATION":[],
"IgnoreInf": []
},
## options defined .pytool/Plugin/DscCompleteCheck
"DscCompleteCheck": {
"IgnoreInf": [
],
"DscPath": "MinPlatformPkg.dsc"
},
## options defined .pytool/Plugin/GuidCheck
"GuidCheck": {
"IgnoreGuidName": [],
"IgnoreGuidValue": ["00000000-0000-0000-0000-000000000000"],
"IgnoreFoldersAndFiles": [],
"IgnoreDuplicates": [
]
},
## options defined .pytool/Plugin/LibraryClassCheck
"LibraryClassCheck": {
"IgnoreLibraryClass": [
],
"IgnoreHeaderFile": []
},
## options defined .pytool/Plugin/SpellCheck
"SpellCheck": {
"AuditOnly": True, # Fails test but run in AuditOnly mode to collect log
"IgnoreStandardPaths": [ # Standard Plugin defined paths that should be ignore
"*.c", "*.asm", "*.h", "*.nasm", "*.s", "*.asl", "*.inf"
],
"IgnoreFiles": [ # use gitignore syntax to ignore errors in matching files
"Library/LzmaCustomDecompressLib/Sdk/DOC/*"
],
"ExtendWords": [ # words to extend to the dictionary for this package
],
"AdditionalIncludePaths": [] # Additional paths to spell check relative to package root (wildcards supported)
},
## options defined .pytool/Plugin/MarkdownLintCheck
"MarkdownLintCheck": {
"IgnoreFiles": [
] # package root relative file, folder, or glob pattern to ignore
}
}