Adds a PrEval entry to the package's ci.yaml file which is used to verify if the package uses a particular library instance when that library instance file (INF) is updated. When a library instance file (INF) is updated, PrEval will review each package's DSC as described in the ci.yaml file to determine if the package uses said library instance. If the package does use the library instance, it will be built and tested to ensure the package is not broken from the change. Cc: Abner Chang <abner.chang@amd.com> Cc: Nickle Wang <nicklew@nvidia.com> Cc: Igor Kulchytskyy <igork@ami.com> Signed-off-by: Joey Vagedes <joeyvagedes@gmail.com> Reviewed-by: Abner Chang <abner.chang@amd.com
109 lines
3.9 KiB
YAML
109 lines
3.9 KiB
YAML
## @file
|
|
# CI configuration for NetworkPkg
|
|
#
|
|
# (C) Copyright 2021 Hewlett Packard Enterprise Development LP<BR>
|
|
# SPDX-License-Identifier: BSD-2-Clause-Patent
|
|
##
|
|
{
|
|
"PrEval": {
|
|
"DscPath": "RedfishPkg.dsc",
|
|
},
|
|
"LicenseCheck": {
|
|
"IgnoreFiles": []
|
|
},
|
|
"EccCheck": {
|
|
## Exception sample looks like below:
|
|
## "ExceptionList": [
|
|
## "<ErrorID>", "<KeyWord>"
|
|
## ]
|
|
"ExceptionList": [
|
|
],
|
|
## Both file path and directory path are accepted.
|
|
"IgnoreFiles": [
|
|
## Below are files incorporated with open source which are
|
|
## not edk2 coding standard compliant.
|
|
##
|
|
## EDK2 CRT library which is not edk2 coding
|
|
## standard compliant.
|
|
## C runtime library for RedfishPkg modules
|
|
"PrivateInclude/Crt/sys",
|
|
"PrivateInclude/Crt/assert.h",
|
|
"PrivateInclude/Crt/errno.h",
|
|
"PrivateInclude/Crt/limits.h",
|
|
"PrivateInclude/Crt/math.h",
|
|
"PrivateInclude/Crt/stdarg.h",
|
|
"PrivateInclude/Crt/stddef.h",
|
|
"PrivateInclude/Crt/stdio.h",
|
|
"PrivateInclude/Crt/stdlib.h",
|
|
"PrivateInclude/Crt/string.h",
|
|
"PrivateInclude/Crt/time.h",
|
|
"PrivateLibrary/RedfishCrtLib/RedfishCrtLib.c",
|
|
"Include/Library/RedfishCrtLib.h",
|
|
##
|
|
## For jansson library open source
|
|
## load.c is overrided from open source.
|
|
"Library/JsonLib/load.c",
|
|
"Library/JsonLib/jansson_config.h",
|
|
"Library/JsonLib/jansson_private_config.h",
|
|
##
|
|
## For libredfish open source
|
|
## The files under edk2libredfish are cloned
|
|
## from DMTF open source
|
|
"PrivateLibrary/RedfishLib/edk2libredfish/include/redfish.h",
|
|
"PrivateLibrary/RedfishLib/edk2libredfish/include/redfishPayload.h",
|
|
"PrivateLibrary/RedfishLib/edk2libredfish/include/redfishService.h",
|
|
"PrivateLibrary/RedfishLib/edk2libredfish/include/redpath.h",
|
|
"PrivateLibrary/RedfishLib/edk2libredfish/src/payload.c",
|
|
"PrivateLibrary/RedfishLib/edk2libredfish/src/redpath.c",
|
|
"PrivateLibrary/RedfishLib/edk2libredfish/src/service.c"
|
|
]
|
|
},
|
|
"CompilerPlugin": {
|
|
"DscPath": "RedfishPkg.dsc"
|
|
},
|
|
"CharEncodingCheck": {
|
|
"IgnoreFiles": []
|
|
},
|
|
"DependencyCheck": {
|
|
"AcceptableDependencies": [
|
|
"MdePkg/MdePkg.dec",
|
|
"MdeModulePkg/MdeModulePkg.dec",
|
|
"NetworkPkg/NetworkPkg.dec",
|
|
"RedfishPkg/RedfishPkg.dec"
|
|
],
|
|
# For host based unit tests
|
|
"AcceptableDependencies-HOST_APPLICATION":[],
|
|
# For UEFI shell based apps
|
|
"AcceptableDependencies-UEFI_APPLICATION":[
|
|
"ShellPkg/ShellPkg.dec"
|
|
],
|
|
"IgnoreInf": []
|
|
},
|
|
"DscCompleteCheck": {
|
|
"DscPath": "RedfishPkg.dsc",
|
|
"IgnoreInf": []
|
|
},
|
|
"GuidCheck": {
|
|
"IgnoreGuidName": [],
|
|
"IgnoreGuidValue": [],
|
|
"IgnoreFoldersAndFiles": []
|
|
},
|
|
"LibraryClassCheck": {
|
|
"IgnoreHeaderFile": []
|
|
},
|
|
|
|
## options defined ci/Plugin/SpellCheck
|
|
"SpellCheck": {
|
|
"AuditOnly": True, # Fails test but run in AuditOnly mode to collect log
|
|
"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)
|
|
},
|
|
|
|
"Defines": {
|
|
"BLD_*_CONTINUOUS_INTEGRATION": "TRUE",
|
|
"BLD_*_REDFISH_ENABLE": "TRUE"
|
|
}
|
|
}
|