mirror of
				https://gitlab.com/qemu-project/edk2.git
				synced 2025-10-30 07:56:39 +08:00 
			
		
		
		
	 a7cc0014d2
			
		
	
	a7cc0014d2
	
	
	
		
			
			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. Signed-off-by: Aaron Pop <aaronpop@microsoft.com>
		
			
				
	
	
		
			70 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			70 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
| ## @file
 | |
| # CI configuration for FatPkg
 | |
| #
 | |
| # Copyright (c) Microsoft Corporation
 | |
| # Copyright (c) 2020, Intel Corporation. All rights reserved.<BR>
 | |
| # SPDX-License-Identifier: BSD-2-Clause-Patent
 | |
| ##
 | |
| {
 | |
|     "PrEval": {
 | |
|         "DscPath": "FatPkg.dsc",
 | |
|     },
 | |
|     "LicenseCheck": {
 | |
|         "IgnoreFiles": []
 | |
|     },
 | |
|     "EccCheck": {
 | |
|         ## Exception sample looks like below:
 | |
|         ## "ExceptionList": [
 | |
|         ##     "<ErrorID>", "<KeyWord>"
 | |
|         ## ]
 | |
|         "ExceptionList": [
 | |
|         ],
 | |
|         ## Both file path and directory path are accepted.
 | |
|         "IgnoreFiles": [
 | |
|         ]
 | |
|     },
 | |
|     "CompilerPlugin": {
 | |
|         "DscPath": "FatPkg.dsc"
 | |
|     },
 | |
|     "CharEncodingCheck": {
 | |
|         "IgnoreFiles": []
 | |
|     },
 | |
|     "DependencyCheck": {
 | |
|         "AcceptableDependencies": [
 | |
|             "MdePkg/MdePkg.dec",
 | |
|             "MdeModulePkg/MdeModulePkg.dec",
 | |
|         ],
 | |
|         # For host based unit tests
 | |
|         "AcceptableDependencies-HOST_APPLICATION":[],
 | |
|         # For UEFI shell based apps
 | |
|         "AcceptableDependencies-UEFI_APPLICATION":[],
 | |
|         "IgnoreInf": []
 | |
|     },
 | |
|     "DscCompleteCheck": {
 | |
|         "IgnoreInf": [],
 | |
|         "DscPath": "FatPkg.dsc"
 | |
|     },
 | |
|     "GuidCheck": {
 | |
|         "IgnoreGuidName": [],
 | |
|         "IgnoreGuidValue": [],
 | |
|         "IgnoreFoldersAndFiles": []
 | |
|     },
 | |
|     "LibraryClassCheck": {
 | |
|         "IgnoreHeaderFile": []
 | |
|     },
 | |
|     "SpellCheck": {
 | |
|         "ExtendWords": [
 | |
|             "ELTORITO",
 | |
|             "FHAND",
 | |
|             "IFILE",
 | |
|             "OFILE",
 | |
|             "FDISKed",
 | |
|             "Lfnbuffer",
 | |
|             "FFFFFFFFL",
 | |
|             "CDVOL",
 | |
|             "DMDEPKG",
 | |
|             "lba's",
 | |
|         ]
 | |
|     }
 | |
| }
 |