From d495762a97f8fac5f74da77a08c7e1c411d1edc3 Mon Sep 17 00:00:00 2001 From: Michael D Kinney Date: Mon, 28 Oct 2019 13:21:07 -0700 Subject: [PATCH] PcAtChipsetPkg: Add YAML files for CI builds https://bugzilla.tianocore.org/show_bug.cgi?id=2315 Add YAML file to the package directory with the configuration of the checks to perform during a CI build. Cc: Ray Ni Signed-off-by: Michael D Kinney Acked-by: Ray Ni Reviewed-by: Liming Gao --- PcAtChipsetPkg/PcAtChipsetPkg.ci.yaml | 46 +++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 PcAtChipsetPkg/PcAtChipsetPkg.ci.yaml diff --git a/PcAtChipsetPkg/PcAtChipsetPkg.ci.yaml b/PcAtChipsetPkg/PcAtChipsetPkg.ci.yaml new file mode 100644 index 0000000000..be470807bd --- /dev/null +++ b/PcAtChipsetPkg/PcAtChipsetPkg.ci.yaml @@ -0,0 +1,46 @@ +## @file +# CI configuration for PcAtChipsetPkg +# +# Copyright (c) Microsoft Corporation +# SPDX-License-Identifier: BSD-2-Clause-Patent +## +{ + "CompilerPlugin": { + "DscPath": "PcAtChipsetPkg.dsc" + }, + "CharEncodingCheck": { + "IgnoreFiles": [] + }, + "DependencyCheck": { + "AcceptableDependencies": [ + "MdePkg/MdePkg.dec", + "PcAtChipsetPkg/PcAtChipsetPkg.dec", + "UefiCpuPkg/UefiCpuPkg.dec" + ], + # For host based unit tests + "AcceptableDependencies-HOST_APPLICATION":[], + # For UEFI shell based apps + "AcceptableDependencies-UEFI_APPLICATION":[], + "IgnoreInf": [] + }, + "DscCompleteCheck": { + "DscPath": "PcAtChipsetPkg.dsc", + "IgnoreInf": [] + }, + "GuidCheck": { + "IgnoreGuidName": [], + "IgnoreGuidValue": [], + "IgnoreFoldersAndFiles": [], + "IgnoreDuplicates": [] + }, + "LibraryClassCheck": { + "IgnoreHeaderFile": [] + }, + "SpellCheck": { + "ExtendWords": [ + "ENUMER", # this is part of an IDE enum + "PCATCHIPSET", + "TXRDY" + ] + } +}