From 8dd850571e5bf1d0ddeeee36c8814a967fe12f30 Mon Sep 17 00:00:00 2001 From: seleznevae Date: Tue, 27 Aug 2019 09:27:20 +0300 Subject: [PATCH] [C] Disable cppcheck in travis --- .travis.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.travis.yml b/.travis.yml index c86882d..b6f2a92 100644 --- a/.travis.yml +++ b/.travis.yml @@ -158,14 +158,14 @@ script: fi - # cppcheck run - - | - if [ "${BASIC_LINUX_GCC}" = "yes" ]; then - cppcheck --std=posix --enable=warning,style,performance,portability,information,missingInclude --error-exitcode=1 lib - cppcheck --std=c89 --enable=warning,style,performance,portability,information,missingInclude --error-exitcode=1 lib - cppcheck --std=c99 --enable=warning,style,performance,portability,information,missingInclude --error-exitcode=1 lib - cppcheck --std=c++11 --enable=warning,style,performance,portability,information,missingInclude --error-exitcode=1 lib - fi + ## cppcheck run + #- | + # if [ "${BASIC_LINUX_GCC}" = "yes" ]; then + # cppcheck --std=posix --enable=warning,style,performance,portability,information,missingInclude --error-exitcode=1 lib + # cppcheck --std=c89 --enable=warning,style,performance,portability,information,missingInclude --error-exitcode=1 lib + # cppcheck --std=c99 --enable=warning,style,performance,portability,information,missingInclude --error-exitcode=1 lib + # cppcheck --std=c++11 --enable=warning,style,performance,portability,information,missingInclude --error-exitcode=1 lib + # fi # clang-tidy run - |