diff options
author | Shenglei Zhang <shenglei.zhang@intel.com> | 2020-08-21 16:26:24 +0800 |
---|---|---|
committer | mergify[bot] <37929162+mergify[bot]@users.noreply.github.com> | 2020-08-24 02:47:29 +0000 |
commit | d4e0b9607c9a64a8eff20724b2e35ea2cd5bd33f (patch) | |
tree | 924ed3e7961f898d00f7a051ddd0483b035ce9df /.pytool | |
parent | 5a6d764e1d073d28e8f398289ccb5592bf9a72ba (diff) | |
download | edk2-d4e0b9607c9a64a8eff20724b2e35ea2cd5bd33f.tar.gz |
.pytool/EccCheck: Disable Ecc error code 10014 for open CI
REF: https://bugzilla.tianocore.org/show_bug.cgi?id=2920
Ecc issues whose error code is 10014, can't be correctly handled
under Linux OS, resulting from a bug in Ecc tool.
So we need to disable it before ecc tool is repaired.
Cc: Sean Brogan <sean.brogan@microsoft.com>
Cc: Bret Barkelew <Bret.Barkelew@microsoft.com>
Cc: Michael D Kinney <michael.d.kinney@intel.com>
Cc: Liming Gao <liming.gao@intel.com>
Signed-off-by: Shenglei Zhang <shenglei.zhang@intel.com>
Reviewed-by: Liming Gao <gaoliming@byosoft.com.cn>
Diffstat (limited to '.pytool')
-rw-r--r-- | .pytool/Plugin/EccCheck/EccCheck.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/.pytool/Plugin/EccCheck/EccCheck.py b/.pytool/Plugin/EccCheck/EccCheck.py index eee1ff7a77..3eaad0bf56 100644 --- a/.pytool/Plugin/EccCheck/EccCheck.py +++ b/.pytool/Plugin/EccCheck/EccCheck.py @@ -301,6 +301,7 @@ class EccCheck(ICiBuildPlugin): "10011",
"10012",
"10013",
+ "10014", #need to be removed after BZ2904 is fixed
"10015",
"10016",
"10017",
|