From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mga04.intel.com (mga04.intel.com []) by mx.groups.io with SMTP id smtpd.web12.12217.1593568521306175350 for ; Tue, 30 Jun 2020 18:55:34 -0700 Authentication-Results: mx.groups.io; dkim=missing; spf=fail (domain: intel.com, ip: , mailfrom: shenglei.zhang@intel.com) IronPort-SDR: vlGK+la1GSeK1enJUSGPLXvYDy/Jz9uVJtB4jg+AksxkdgE2y5QPCO6Z4235IjhSfeV4cUgC01 k6w665QtyQgw== X-IronPort-AV: E=McAfee;i="6000,8403,9668"; a="143925600" X-IronPort-AV: E=Sophos;i="5.75,298,1589266800"; d="scan'208";a="143925600" X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga006.jf.intel.com ([10.7.209.51]) by fmsmga104.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 30 Jun 2020 18:55:34 -0700 IronPort-SDR: su3pxoLzmeiEhq151JQtVlvaOUFLwK4E/1+MhwJPJ9XPy2XyvsGxED3Y9GWkXcuAWY/fv04R8H kzXNJ/lL/qNw== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.75,298,1589266800"; d="scan'208";a="281442782" Received: from shenglei-dev.ccr.corp.intel.com ([10.239.158.52]) by orsmga006.jf.intel.com with ESMTP; 30 Jun 2020 18:55:33 -0700 From: "Zhang, Shenglei" To: devel@edk2.groups.io Cc: Ray Ni Subject: [PATCH v6 07/16] FatPkg/FatPkg.ci.yaml: Add configuration for Ecc check Date: Wed, 1 Jul 2020 09:55:07 +0800 Message-Id: <20200701015516.17108-8-shenglei.zhang@intel.com> X-Mailer: git-send-email 2.18.0.windows.1 In-Reply-To: <20200701015516.17108-1-shenglei.zhang@intel.com> References: <20200701015516.17108-1-shenglei.zhang@intel.com> Add configuration ExceptionList and IgnoreFiles for package config files. So users can rely on this to ignore some Ecc issues. Cc: Ray Ni Signed-off-by: Shenglei Zhang Reviewed-by: Guomin Jiang --- FatPkg/FatPkg.ci.yaml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/FatPkg/FatPkg.ci.yaml b/FatPkg/FatPkg.ci.yaml index 8b0fb1d4fcd5..e6a4c810976f 100644 --- a/FatPkg/FatPkg.ci.yaml +++ b/FatPkg/FatPkg.ci.yaml @@ -2,9 +2,20 @@ # CI configuration for FatPkg # # Copyright (c) Microsoft Corporation +# Copyright (c) 2020, Intel Corporation. All rights reserved.
# SPDX-License-Identifier: BSD-2-Clause-Patent ## { + "EccCheck": { + ## Exception sample looks like below: + ## "ExceptionList": [ + ## "", "" + ## ] + "ExceptionList": [ + ], + "IgnoreFiles": [ + ] + }, "CompilerPlugin": { "DscPath": "FatPkg.dsc" }, -- 2.18.0.windows.1