From a2d55ddece3cd2c7320abc5090271af6333531c6 Mon Sep 17 00:00:00 2001 From: David Cermak Date: Mon, 21 Oct 2019 09:52:32 +0200 Subject: [PATCH] ci: update static analysis rules to fail on any new issue zeroing out limits for number of warnings which are tolerated closes IDF-973 --- tools/ci/static-analysis-rules.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tools/ci/static-analysis-rules.yml b/tools/ci/static-analysis-rules.yml index 6678b85cb..d96b0a0aa 100644 --- a/tools/ci/static-analysis-rules.yml +++ b/tools/ci/static-analysis-rules.yml @@ -1,6 +1,6 @@ limits: - "clang-analyzer-core.NullDereference" : 9 - "clang-analyzer-unix.Malloc" : 9 + "clang-analyzer-core.NullDereference" : 0 + "clang-analyzer-unix.Malloc" : 0 ignore: - "llvm-header-guard" @@ -12,7 +12,7 @@ skip: - "components/asio/asio" - "components/bootloader/subproject/components/micro-ecc/micro-ecc" - "components/bt/lib" - - "components/coap/libcoap" + - "components/coap" - "components/esp_wifi/lib_esp32" - "components/expat/expat" - "components/json/cJSON"