mirror of
				https://gitlab.com/qemu-project/edk2.git
				synced 2025-10-30 07:56:39 +08:00 
			
		
		
		
	 d214d75be0
			
		
	
	d214d75be0
	
	
	
		
			
			Adds an entry to the package's CI configuration file that enable policy 5 for stuart_pr_eval. With this Policy, all INFs used by the package are extracted from the provided DSC file and compared against the list of changed *.inf (INF) files in the PR. If there is a match, stuart_pr_eval will specify that this package is affected by the PR and needs to be tested. Signed-off-by: Joey Vagedes <joey.vagedes@gmail.com>
		
			
				
	
	
		
			92 lines
		
	
	
		
			3.1 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			92 lines
		
	
	
		
			3.1 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
| ## @file
 | |
| # CI configuration for UefiCpuPkg
 | |
| #
 | |
| # Copyright (c) Microsoft Corporation
 | |
| # Copyright (c) 2020, Intel Corporation. All rights reserved.<BR>
 | |
| # SPDX-License-Identifier: BSD-2-Clause-Patent
 | |
| ##
 | |
| {
 | |
|     "PrEval": {
 | |
|         "DscPath": "UefiCpuPkg.dsc",
 | |
|     },
 | |
|     "LicenseCheck": {
 | |
|         "IgnoreFiles": []
 | |
|     },
 | |
|     "EccCheck": {
 | |
|         ## Exception sample looks like below:
 | |
|         ## "ExceptionList": [
 | |
|         ##     "<ErrorID>", "<KeyWord>"
 | |
|         ## ]
 | |
|         "ExceptionList": [
 | |
|           "8006", "main",
 | |
|           "8005", "GENERAL_REGISTER.R8",
 | |
|           "8005", "GENERAL_REGISTER.R9",
 | |
|           "8005", "GENERAL_REGISTER.R10",
 | |
|           "8005", "GENERAL_REGISTER.R11",
 | |
|           "8005", "GENERAL_REGISTER.R12",
 | |
|           "8005", "GENERAL_REGISTER.R13",
 | |
|           "8005", "GENERAL_REGISTER.R14",
 | |
|           "8005", "GENERAL_REGISTER.R15"
 | |
|         ],
 | |
|         ## Both file path and directory path are accepted.
 | |
|         "IgnoreFiles": [
 | |
|           "Library/BaseRiscV64CpuExceptionHandlerLib/CpuExceptionHandlerLib.h"
 | |
|         ]
 | |
|     },
 | |
|     "CompilerPlugin": {
 | |
|         "DscPath": "UefiCpuPkg.dsc"
 | |
|     },
 | |
|     ## options defined ci/Plugin/HostUnitTestCompilerPlugin
 | |
|     "HostUnitTestCompilerPlugin": {
 | |
|         "DscPath": "Test/UefiCpuPkgHostTest.dsc"
 | |
|     },
 | |
|     "CharEncodingCheck": {
 | |
|         "IgnoreFiles": []
 | |
|     },
 | |
|     "DependencyCheck": {
 | |
|         "AcceptableDependencies": [
 | |
|             "MdePkg/MdePkg.dec",
 | |
|             "MdeModulePkg/MdeModulePkg.dec",
 | |
|             "UefiCpuPkg/UefiCpuPkg.dec"
 | |
|         ],
 | |
|         # For host based unit tests
 | |
|         "AcceptableDependencies-HOST_APPLICATION":[
 | |
|             "UnitTestFrameworkPkg/UnitTestFrameworkPkg.dec",
 | |
|             "CryptoPkg/CryptoPkg.dec"
 | |
|         ],
 | |
|         # For UEFI shell based apps
 | |
|         "AcceptableDependencies-UEFI_APPLICATION":[],
 | |
|         "IgnoreInf": []
 | |
|     },
 | |
|     "DscCompleteCheck": {
 | |
|         "DscPath": "UefiCpuPkg.dsc",
 | |
|         "IgnoreInf": [
 | |
|             "UefiCpuPkg/ResetVector/FixupVtf/Vtf.inf",
 | |
|             "UefiCpuPkg/ResetVector/Vtf0/Vtf0.inf",
 | |
|             "UefiCpuPkg/ResetVector/Vtf0/Bin/ResetVector1G.inf"
 | |
|         ]
 | |
|     },
 | |
|     "HostUnitTestDscCompleteCheck": {
 | |
|         "IgnoreInf": [""],
 | |
|         "DscPath": "Test/UefiCpuPkgHostTest.dsc"
 | |
|     },
 | |
|     "GuidCheck": {
 | |
|         "IgnoreGuidName": ["SecCore", "ResetVector"], # Expected duplication for gEfiFirmwareVolumeTopFileGuid
 | |
|         "IgnoreGuidValue": [],
 | |
|         "IgnoreFoldersAndFiles": [],
 | |
|         "IgnoreDuplicates": []
 | |
|     },
 | |
|     "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)
 | |
|     }
 | |
| }
 |