2019-10-28 23:20:04 +03:00
|
|
|
## @file
|
|
|
|
# CI configuration for MdeModulePkg
|
|
|
|
#
|
|
|
|
# Copyright (c) Microsoft Corporation
|
2020-05-26 10:27:31 +03:00
|
|
|
# Copyright (c) 2020, Intel Corporation. All rights reserved.<BR>
|
2021-07-05 05:41:08 +03:00
|
|
|
# (C) Copyright 2021 Hewlett Packard Enterprise Development LP<BR>
|
2019-10-28 23:20:04 +03:00
|
|
|
# SPDX-License-Identifier: BSD-2-Clause-Patent
|
|
|
|
##
|
|
|
|
{
|
2020-07-17 10:13:34 +03:00
|
|
|
## options defined .pytool/Plugin/LicenseCheck
|
|
|
|
"LicenseCheck": {
|
|
|
|
"IgnoreFiles": []
|
|
|
|
},
|
2020-05-26 10:27:31 +03:00
|
|
|
"EccCheck": {
|
|
|
|
## Exception sample looks like below:
|
|
|
|
## "ExceptionList": [
|
|
|
|
## "<ErrorID>", "<KeyWord>"
|
|
|
|
## ]
|
|
|
|
"ExceptionList": [
|
2021-04-30 08:07:32 +03:00
|
|
|
"8005", "UNIVERSAL_PAYLOAD_PCI_ROOT_BRIDGE.UID",
|
|
|
|
"8005", "UNIVERSAL_PAYLOAD_PCI_ROOT_BRIDGE.HID",
|
2021-08-11 09:35:39 +03:00
|
|
|
"8001", "UefiSortLibUnitTestMain",
|
2020-05-26 10:27:31 +03:00
|
|
|
],
|
|
|
|
## Both file path and directory path are accepted.
|
|
|
|
"IgnoreFiles": [
|
2021-11-23 23:59:50 +03:00
|
|
|
"Library/LzmaCustomDecompressLib",
|
|
|
|
"Library/BrotliCustomDecompressLib",
|
|
|
|
"Universal/RegularExpressionDxe"
|
2020-05-26 10:27:31 +03:00
|
|
|
]
|
|
|
|
},
|
2019-10-28 23:20:04 +03:00
|
|
|
## options defined ci/Plugin/CompilerPlugin
|
|
|
|
"CompilerPlugin": {
|
|
|
|
"DscPath": "MdeModulePkg.dsc"
|
|
|
|
},
|
2020-01-22 21:16:14 +03:00
|
|
|
## options defined ci/Plugin/HostUnitTestCompilerPlugin
|
|
|
|
"HostUnitTestCompilerPlugin": {
|
|
|
|
"DscPath": "Test/MdeModulePkgHostTest.dsc"
|
|
|
|
},
|
2019-10-28 23:20:04 +03:00
|
|
|
|
|
|
|
## options defined ci/Plugin/CharEncodingCheck
|
|
|
|
"CharEncodingCheck": {
|
2019-12-27 09:28:20 +03:00
|
|
|
"IgnoreFiles": [
|
|
|
|
"MdeModulePkg/Universal/RegularExpressionDxe/oniguruma/test/testc.c",
|
|
|
|
"MdeModulePkg/Universal/RegularExpressionDxe/oniguruma/windows/testc.c"
|
|
|
|
]
|
2019-10-28 23:20:04 +03:00
|
|
|
},
|
|
|
|
|
|
|
|
## options defined ci/Plugin/DependencyCheck
|
|
|
|
"DependencyCheck": {
|
|
|
|
"AcceptableDependencies": [
|
|
|
|
"MdePkg/MdePkg.dec",
|
|
|
|
"MdeModulePkg/MdeModulePkg.dec",
|
|
|
|
"StandaloneMmPkg/StandaloneMmPkg.dec",
|
|
|
|
"ArmPkg/ArmPkg.dec" # this should be fixed by promoting an abstraction
|
|
|
|
],
|
|
|
|
# For host based unit tests
|
2020-01-22 21:16:14 +03:00
|
|
|
"AcceptableDependencies-HOST_APPLICATION":[
|
|
|
|
"UnitTestFrameworkPkg/UnitTestFrameworkPkg.dec"
|
|
|
|
],
|
2019-10-28 23:20:04 +03:00
|
|
|
# For UEFI shell based apps
|
|
|
|
"AcceptableDependencies-UEFI_APPLICATION":[],
|
|
|
|
"IgnoreInf": []
|
|
|
|
},
|
|
|
|
|
|
|
|
## options defined ci/Plugin/DscCompleteCheck
|
|
|
|
"DscCompleteCheck": {
|
|
|
|
"IgnoreInf": [],
|
|
|
|
"DscPath": "MdeModulePkg.dsc"
|
|
|
|
},
|
2020-01-22 21:16:14 +03:00
|
|
|
## options defined ci/Plugin/HostUnitTestDscCompleteCheck
|
|
|
|
"HostUnitTestDscCompleteCheck": {
|
|
|
|
"IgnoreInf": [""],
|
|
|
|
"DscPath": "Test/MdeModulePkgHostTest.dsc"
|
|
|
|
},
|
2019-10-28 23:20:04 +03:00
|
|
|
|
|
|
|
## options defined ci/Plugin/GuidCheck
|
|
|
|
"GuidCheck": {
|
|
|
|
"IgnoreGuidName": [],
|
|
|
|
"IgnoreGuidValue": ["00000000-0000-0000-0000-000000000000"],
|
|
|
|
"IgnoreFoldersAndFiles": [],
|
|
|
|
"IgnoreDuplicates": [
|
|
|
|
"gEfiPeiMmAccessPpiGuid=gPeiSmmAccessPpiGuid",
|
|
|
|
"gPeiSmmControlPpiGuid=gEfiPeiMmControlPpiGuid",
|
2021-09-16 03:14:20 +03:00
|
|
|
"gEfiPeiMmCommunicationPpiGuid=gEfiPeiSmmCommunicationPpiGuid",
|
2019-10-28 23:20:04 +03:00
|
|
|
]
|
|
|
|
},
|
|
|
|
|
|
|
|
## options defined ci/Plugin/LibraryClassCheck
|
|
|
|
"LibraryClassCheck": {
|
2020-10-03 03:18:10 +03:00
|
|
|
"IgnoreLibraryClass": [
|
|
|
|
"HwResetSystemLib" # MU_CHANGE - "Virtual" LibraryClass
|
|
|
|
],
|
2019-10-28 23:20:04 +03:00
|
|
|
"IgnoreHeaderFile": []
|
|
|
|
},
|
|
|
|
|
|
|
|
## options defined ci/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
|
|
|
|
"LIGHTGRAY",
|
|
|
|
"DARKGRAY",
|
|
|
|
"LIGHTBLUE",
|
|
|
|
"LIGHTGREEN",
|
|
|
|
"LIGHTCYAN",
|
|
|
|
"LIGHTRED",
|
|
|
|
"LIGHTMAGENTA",
|
|
|
|
"FVMAIN",
|
|
|
|
"VARCHECKPCD",
|
|
|
|
"Getxx",
|
2020-11-09 09:45:11 +03:00
|
|
|
"lzturbo",
|
|
|
|
"musthave",
|
|
|
|
"canthave"
|
2019-10-28 23:20:04 +03:00
|
|
|
],
|
|
|
|
"AdditionalIncludePaths": [] # Additional paths to spell check relative to package root (wildcards supported)
|
2020-10-14 02:14:54 +03:00
|
|
|
},
|
|
|
|
|
|
|
|
## options defined .pytool/Plugin/MarkdownLintCheck
|
|
|
|
"MarkdownLintCheck": {
|
|
|
|
"IgnoreFiles": [ "Universal/RegularExpressionDxe/oniguruma", # submodule outside of control
|
|
|
|
"Library/BrotliCustomDecompressLib/brotli" # submodule outside of control
|
|
|
|
] # package root relative file, folder, or glob pattern to ignore
|
2019-10-28 23:20:04 +03:00
|
|
|
}
|
|
|
|
}
|