From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mga01.intel.com (mga01.intel.com []) by mx.groups.io with SMTP id smtpd.web10.9931.1597129329084339712 for ; Tue, 11 Aug 2020 00:02:18 -0700 Authentication-Results: mx.groups.io; dkim=missing; spf=fail (domain: intel.com, ip: , mailfrom: shenglei.zhang@intel.com) IronPort-SDR: fISepDoEo+DyAZRNMY4HqPkiZ2z3TUheqVhI9W9nFvMDU3acQWNW4bgwF94CWgpB3WQgMNVcoA gH24hLhobhEw== X-IronPort-AV: E=McAfee;i="6000,8403,9709"; a="171723395" X-IronPort-AV: E=Sophos;i="5.75,460,1589266800"; d="scan'208";a="171723395" X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga008.fm.intel.com ([10.253.24.58]) by fmsmga101.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 11 Aug 2020 00:02:17 -0700 IronPort-SDR: toT8FHPadduQX80u41fRJyydZEGZU+tqeEDbf28XGqevENd2o1sZzJIkA5CYoFMIEpXHTUvcR4 0Dd8N7yfD7FQ== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.75,460,1589266800"; d="scan'208";a="277496982" Received: from shenglei-dev.ccr.corp.intel.com ([10.239.154.36]) by fmsmga008.fm.intel.com with ESMTP; 11 Aug 2020 00:02:16 -0700 From: "Zhang, Shenglei" To: devel@edk2.groups.io Cc: Jian J Wang , Xiaoyu Lu Subject: [PATCH v9 05/16] CryptoPkg/CryptoPkg.ci.yaml: Add configuration for Ecc check Date: Tue, 11 Aug 2020 15:01:53 +0800 Message-Id: <20200811070204.55160-6-shenglei.zhang@intel.com> X-Mailer: git-send-email 2.18.0.windows.1 In-Reply-To: <20200811070204.55160-1-shenglei.zhang@intel.com> References: <20200811070204.55160-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. Besides, add submodule path in IgnoreFiles section. Cc: Jian J Wang Cc: Xiaoyu Lu Signed-off-by: Shenglei Zhang --- CryptoPkg/CryptoPkg.ci.yaml | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/CryptoPkg/CryptoPkg.ci.yaml b/CryptoPkg/CryptoPkg.ci.yaml index e73b79e01fef..e2d190a90c51 100644 --- a/CryptoPkg/CryptoPkg.ci.yaml +++ b/CryptoPkg/CryptoPkg.ci.yaml @@ -2,12 +2,25 @@ # CI configuration for CryptoPkg # # Copyright (c) Microsoft Corporation +# Copyright (c) 2020, Intel Corporation. All rights reserved.
# SPDX-License-Identifier: BSD-2-Clause-Patent ## { "LicenseCheck": { "IgnoreFiles": [] }, + "EccCheck": { + ## Exception sample looks like below: + ## "ExceptionList": [ + ## "", "" + ## ] + "ExceptionList": [ + ], + ## Both file path and directory path are accepted. + "IgnoreFiles": [ + "Library/OpensslLib/openssl" + ] + }, "CompilerPlugin": { "DscPath": "CryptoPkg.dsc" }, -- 2.18.0.windows.1