2020-11-18 05:25:45 +03:00
|
|
|
##
|
|
|
|
# CI configuration for AdvLoggerPkg
|
|
|
|
#
|
|
|
|
# Copyright (c) Microsoft Corporation
|
|
|
|
# SPDX-License-Identifier: BSD-2-Clause-Patent
|
|
|
|
##
|
|
|
|
{
|
|
|
|
## options defined ci/Plugin/CompilerPlugin
|
|
|
|
"CompilerPlugin": {
|
|
|
|
"DscPath": "AdvLoggerPkg.dsc"
|
|
|
|
},
|
|
|
|
|
|
|
|
## options defined ci/Plugin/CharEncodingCheck
|
|
|
|
"CharEncodingCheck": {
|
|
|
|
"IgnoreFiles": []
|
|
|
|
},
|
|
|
|
|
|
|
|
## options defined ci/Plugin/DependencyCheck
|
|
|
|
"DependencyCheck": {
|
|
|
|
"AcceptableDependencies": [
|
2022-09-03 06:05:30 +03:00
|
|
|
"ArmPkg/ArmPkg.dec",
|
2020-11-18 05:25:45 +03:00
|
|
|
"MdePkg/MdePkg.dec",
|
|
|
|
"MdeModulePkg/MdeModulePkg.dec",
|
|
|
|
"AdvLoggerPkg/AdvLoggerPkg.dec",
|
|
|
|
"MsWheaPkg/MsWheaPkg.dec",
|
|
|
|
"UnitTestFrameworkPkg/UnitTestFrameworkPkg.dec",
|
|
|
|
"ShellPkg/ShellPkg.dec"
|
|
|
|
],
|
|
|
|
"AcceptableDependencies-HOST_APPLICATION":[ # for host based unit tests
|
|
|
|
],
|
|
|
|
"AcceptableDependencies-UEFI_APPLICATION": [
|
|
|
|
],
|
|
|
|
"IgnoreInf": []
|
|
|
|
},
|
|
|
|
|
|
|
|
## options defined ci/Plugin/DscCompleteCheck
|
|
|
|
"DscCompleteCheck": {
|
|
|
|
"IgnoreInf": [],
|
|
|
|
"DscPath": "AdvLoggerPkg.dsc"
|
|
|
|
},
|
|
|
|
|
|
|
|
## options defined ci/Plugin/GuidCheck
|
|
|
|
"GuidCheck": {
|
|
|
|
"IgnoreGuidName": [],
|
|
|
|
"IgnoreGuidValue": [],
|
|
|
|
"IgnoreFoldersAndFiles": [],
|
|
|
|
"IgnoreDuplicates": []
|
|
|
|
},
|
|
|
|
|
|
|
|
## options defined ci/Plugin/LibraryClassCheck
|
|
|
|
"LibraryClassCheck": {
|
|
|
|
"IgnoreLibraryClass": [],
|
|
|
|
"IgnoreHeaderFile": []
|
|
|
|
},
|
|
|
|
|
|
|
|
## options defined ci/Plugin/SpellCheck
|
|
|
|
"SpellCheck": {
|
|
|
|
"AuditOnly": False, # Fails test but run in AuditOnly mode to collect log
|
|
|
|
"IgnoreFiles": [], # use gitignore syntax to ignore errors in matching files
|
|
|
|
"IgnoreStandardPaths": [], # Standard Plugin defined paths that should be ignore
|
|
|
|
"AdditionalIncludePaths": [], # Additional paths to spell check (wildcards supported)
|
|
|
|
"ExtendWords": [
|
2022-05-20 21:51:36 +03:00
|
|
|
lodsd,
|
|
|
|
debugport,
|
|
|
|
infor,
|
|
|
|
valist,
|
|
|
|
premem,
|
|
|
|
uncacheable,
|
|
|
|
physmask,
|
2022-06-30 07:47:39 +03:00
|
|
|
PHYSBASE,
|
|
|
|
DEADLOOP,
|
|
|
|
LOGTELEMETRY,
|
|
|
|
DEBUGAGENT,
|
2022-09-03 06:05:30 +03:00
|
|
|
POSTMEM,
|
|
|
|
MMARM
|
2020-11-18 05:25:45 +03:00
|
|
|
]
|
|
|
|
}
|
2020-02-22 03:31:34 +03:00
|
|
|
}
|