summaryrefslogtreecommitdiffstats
path: root/FmpDevicePkg/FmpDevicePkg.ci.yaml
diff options
context:
space:
mode:
authorMichael D Kinney <michael.d.kinney@intel.com>2019-10-28 13:19:46 -0700
committerMichael D Kinney <michael.d.kinney@intel.com>2019-11-11 13:02:14 -0800
commit8bc648fe6c10c1f94a7ee73bd38b65a0122de12f (patch)
tree6465b37ad94169d08b4d5115dac9af656fcb1383 /FmpDevicePkg/FmpDevicePkg.ci.yaml
parent6d807aef57f7d41499175aa5bfbfc7c242983502 (diff)
downloadedk2-8bc648fe6c10c1f94a7ee73bd38b65a0122de12f.tar.gz
edk2-8bc648fe6c10c1f94a7ee73bd38b65a0122de12f.tar.bz2
edk2-8bc648fe6c10c1f94a7ee73bd38b65a0122de12f.zip
FmpDevicePkg: Add YAML file 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. Use BaseCryptLibNull for package CI builds to reduce package build times. Enabled with CONTINUOUS_INTEGRATION in YAML files. By default CONTINUOUS_INTEGRATION is not defined, and the original lib mappings are preserved. Cc: Liming Gao <liming.gao@intel.com> Signed-off-by: Michael D Kinney <michael.d.kinney@intel.com> Reviewed-by: Liming Gao <liming.gao@intel.com>
Diffstat (limited to 'FmpDevicePkg/FmpDevicePkg.ci.yaml')
-rw-r--r--FmpDevicePkg/FmpDevicePkg.ci.yaml43
1 files changed, 43 insertions, 0 deletions
diff --git a/FmpDevicePkg/FmpDevicePkg.ci.yaml b/FmpDevicePkg/FmpDevicePkg.ci.yaml
new file mode 100644
index 0000000000..c17b355d42
--- /dev/null
+++ b/FmpDevicePkg/FmpDevicePkg.ci.yaml
@@ -0,0 +1,43 @@
+## @file
+# CI configuration for FmpDevicePkg
+#
+# Copyright (c) Microsoft Corporation
+# SPDX-License-Identifier: BSD-2-Clause-Patent
+##
+{
+ "CompilerPlugin": {
+ "DscPath": "FmpDevicePkg.dsc"
+ },
+ "CharEncodingCheck": {
+ "IgnoreFiles": []
+ },
+ "DependencyCheck": {
+ "AcceptableDependencies": [
+ "MdePkg/MdePkg.dec",
+ "MdeModulePkg/MdeModulePkg.dec",
+ "FmpDevicePkg/FmpDevicePkg.dec",
+ "CryptoPkg/CryptoPkg.dec"
+ ],
+ "IgnoreInf": []
+ },
+ "DscCompleteCheck": {
+ "DscPath": "FmpDevicePkg.dsc",
+ "IgnoreInf": []
+ },
+ "GuidCheck": {
+ "IgnoreGuidName": [],
+ "IgnoreGuidValue": [],
+ "IgnoreFoldersAndFiles": []
+ },
+ "LibraryClassCheck": {
+ "IgnoreHeaderFile": []
+ },
+ "SpellCheck": {
+ "ExtendWords": [
+ "FMPSTATE",
+ ]
+ },
+ "Defines": {
+ "BLD_*_CONTINUOUS_INTEGRATION": "TRUE",
+ }
+}