edk2/TcgTpmPkg/TcgTpmPkg.ci.yaml
Michael Kubacki df9111c2d3 Global: Set MarkdownLintCheck plugin to AuditOnly
In preparation for the MarkdownLintCheck plugin being added to the
repo, this change defaults the plugin to `AuditOnly` mode in each
package. This allows package maintainers to enable the plugin as they
see fit.

Continuous-integration-options: PatchCheck.ignore-multi-package
Signed-off-by: Michael Kubacki <michael.kubacki@microsoft.com>
2026-07-29 12:32:09 +00:00

145 lines
6 KiB
YAML

## @file
# CI configuration for TcgTpmPkg
#
# Copyright (c) 2025, Arm Ltd. All rights reserved.<BR>
# SPDX-License-Identifier: BSD-2-Clause-Patent
##
{
"PrEval": {
"DscPath": "TcgTpmPkg.dsc",
},
"LicenseCheck": {
"IgnoreFiles": [
# These files and directories are copied from TCG TPM v2.0 reference libraries
"Library/TpmLib/Include/TpmConfiguration/TpmBuildSwitches.h",
"Library/TpmLib/Include/TpmConfiguration/TpmProfile_Common.h",
"Library/TpmLib/Include/TpmConfiguration/TpmProfile_Misc.h",
"Library/TpmLib/Include/Ossl/BnToOsslMath.h",
"Library/TpmLib/Include/Ossl/TpmToOsslHash.h",
"Library/TpmLib/Include/Ossl/TpmToOsslSym.h",
"Library/TpmLib/Ossl/BnToOsslMath.c",
"Library/TpmLib/Ossl/TpmToOsslSupport.c",
"Library/TpmLib/TPM",
"Private/Include"
]
},
"EccCheck": {
## Exception sample looks like below:
## "ExceptionList": [
## "<ErrorID>", "<KeyWord>"
## ]
"ExceptionList": [
],
## Both file path and directory path are accepted.
"IgnoreFiles": [
# These files and directories are related for TCG TPM v2.0 reference libraries
"Library/TpmLib/Include/TpmConfiguration/TpmBuildSwitches.h",
"Library/TpmLib/Include/TpmConfiguration/TpmProfile_Common.h",
"Library/TpmLib/Include/TpmConfiguration/TpmProfile_Misc.h",
"Library/TpmLib/Include/Ossl/BnToOsslMath.h",
"Library/TpmLib/Include/Ossl/TpmToOsslHash.h",
"Library/TpmLib/Include/Ossl/TpmToOsslSym.h",
"Library/TpmLib/Ossl/BnToOsslMath.c",
"Library/TpmLib/Ossl/TpmToOsslSupport.c",
"Library/TpmLib/TpmLibCompileOptions.h",
"Library/TpmLib/TpmPlatformFunctions.c",
"Library/TpmLib/TPM",
"Private/Include"
]
},
"CompilerPlugin": {
"DscPath": "TcgTpmPkg.dsc"
},
## options defined .pytool/Plugin/HostUnitTestCompilerPlugin
"HostUnitTestCompilerPlugin": {
},
"CharEncodingCheck": {
"IgnoreFiles": []
},
"DependencyCheck": {
"AcceptableDependencies": [
"CryptoPkg/CryptoPkg.dec",
"MdePkg/MdePkg.dec",
"MdeModulePkg/MdeModulePkg.dec",
"TcgTpmPkg/TcgTpmPkg.dec"
],
# For host based unit tests
"AcceptableDependencies-HOST_APPLICATION":[],
# For UEFI shell based apps
"AcceptableDependencies-UEFI_APPLICATION":[],
"IgnoreInf": []
},
"DscCompleteCheck": {
"DscPath": "TcgTpmPkg.dsc",
"IgnoreInf": []
},
"GuidCheck": {
"IgnoreGuidName": [],
"IgnoreGuidValue": [],
"IgnoreFoldersAndFiles": []
},
"LibraryClassCheck": {
"IgnoreHeaderFile": []
},
## options defined ci/Plugin/SpellCheck
"SpellCheck": {
"skip": True,
"IgnoreFiles": [], # use gitignore syntax to ignore errors in matching files
"ExtendWords": [], # words to extend to the dictionary for this package
"IgnoreStandardPaths": [], # Standard Plugin defined paths that should be ignore
"AdditionalIncludePaths": [] # Additional paths to spell check (wildcards supported)
},
# options defined in .pytool/Plugin/UncrustifyCheck
"UncrustifyCheck": {
"IgnoreFiles": [
# These files and directories are related for TCG TPM v2.0 reference libraries
"Library/TpmLib/Include/TpmConfiguration/TpmBuildSwitches.h",
"Library/TpmLib/Include/TpmConfiguration/TpmProfile_Common.h",
"Library/TpmLib/Include/TpmConfiguration/TpmProfile_Misc.h",
"Library/TpmLib/Include/Ossl/BnToOsslMath.h",
"Library/TpmLib/Include/Ossl/TpmToOsslHash.h",
"Library/TpmLib/Include/Ossl/TpmToOsslSym.h",
"Library/TpmLib/Ossl/BnToOsslMath.c",
"Library/TpmLib/Ossl/TpmToOsslSupport.c",
"Library/TpmLib/TpmLibCompileOptions.h",
"Library/TpmLib/TpmPlatformFunctions.c",
"Private/Include/Standard/CrtLibSupport.h",
"Private/Include/Standard/arpa/inet.h",
"Private/Include/Standard/arpa/nameser.h",
"Private/Include/Standard/assert.h",
"Private/Include/Standard/ctype.h",
"Private/Include/Standard/errno.h",
"Private/Include/Standard/fcntl.h",
"Private/Include/Standard/inttypes.h",
"Private/Include/Standard/limits.h",
"Private/Include/Standard/memory.h",
"Private/Include/Standard/netinet/in.h",
"Private/Include/Standard/stdarg.h",
"Private/Include/Standard/stddef.h",
"Private/Include/Standard/stdint.h",
"Private/Include/Standard/stdio.h",
"Private/Include/Standard/stdlib.h",
"Private/Include/Standard/string.h",
"Private/Include/Standard/strings.h",
"Private/Include/Standard/stubs-32.h",
"Private/Include/Standard/sys/param.h",
"Private/Include/Standard/sys/shm.h",
"Private/Include/Standard/sys/socket.h",
"Private/Include/Standard/sys/syscall.h",
"Private/Include/Standard/sys/time.h",
"Private/Include/Standard/sys/types.h",
"Private/Include/Standard/sys/utsname.h",
"Private/Include/Standard/syslog.h",
"Private/Include/Standard/time.h",
"Private/Include/Standard/unistd.h"
]
},
## options defined .pytool/Plugin/MarkdownLintCheck
"MarkdownLintCheck": {
"AuditOnly": True, # If True, log all errors and then mark as skipped
"IgnoreFiles": [] # package root relative file, folder, or glob pattern to ignore
}
}