From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mga17.intel.com (mga17.intel.com []) by mx.groups.io with SMTP id smtpd.web12.6131.1591776918502597999 for ; Wed, 10 Jun 2020 01:15:47 -0700 Authentication-Results: mx.groups.io; dkim=missing; spf=fail (domain: intel.com, ip: , mailfrom: shenglei.zhang@intel.com) IronPort-SDR: Hn3EHVKyQ8jbJFu90h4enitPMwIRpTPStNnJVvMFPy+jFruzExvLT9fXJE09oghd4D1GSgjnFz BOZotigow1cw== X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga007.fm.intel.com ([10.253.24.52]) by fmsmga107.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 10 Jun 2020 01:15:47 -0700 IronPort-SDR: fgGm6m3MeJlebhWPty16pX1oWshg2hzPeK9HdlrKfuAro6Iils/EJDna4J0PD7VPeHcF4RLotC ApOfj80SaFWA== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.73,495,1583222400"; d="scan'208";a="259220787" Received: from shenglei-dev.ccr.corp.intel.com ([10.239.158.52]) by fmsmga007.fm.intel.com with ESMTP; 10 Jun 2020 01:15:45 -0700 From: "Zhang, Shenglei" To: devel@edk2.groups.io Cc: Ray Ni , Zhichao Gao Subject: [PATCH v3 15/17] ShellPkg/ShellPkg.ci.yaml: Add configuration for Ecc check Date: Wed, 10 Jun 2020 16:14:35 +0800 Message-Id: <20200610081437.61352-16-shenglei.zhang@intel.com> X-Mailer: git-send-email 2.18.0.windows.1 In-Reply-To: <20200610081437.61352-1-shenglei.zhang@intel.com> References: <20200610081437.61352-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 Cc: Zhichao Gao Signed-off-by: Shenglei Zhang --- ShellPkg/ShellPkg.ci.yaml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/ShellPkg/ShellPkg.ci.yaml b/ShellPkg/ShellPkg.ci.yaml index 67de34a2556e..528bd2cc41cc 100644 --- a/ShellPkg/ShellPkg.ci.yaml +++ b/ShellPkg/ShellPkg.ci.yaml @@ -5,6 +5,16 @@ # SPDX-License-Identifier: BSD-2-Clause-Patent ## { + "EccCheck": { + ## Exception sample looks like below: + ## "ExceptionList": [ + ## "", "" + ## ] + "ExceptionList": [ + ], + "IgnoreFiles": [ + ] + }, "CompilerPlugin": { "DscPath": "ShellPkg.dsc" }, -- 2.18.0.windows.1