From 28eff2ba66d90109facc2615a4fd334c4caf5e0d Mon Sep 17 00:00:00 2001 From: seleznevae Date: Thu, 18 Jul 2019 22:58:26 +0300 Subject: [PATCH] [C] Disabled scan-build in .travis --- .travis.yml | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/.travis.yml b/.travis.yml index 9f2f912..c86882d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -243,17 +243,17 @@ script: fi - # Clang static analyzer - - | - if [ "${CC}" = 'clang' ]; then - cd .. ; - pwd ; - ls ; - rm -rf build/* ; - cd build ; - cmake .. ; - scan-build make ; - fi + # Clang static analyzer (doesn't work - can't find scan-build) + # - | + # if [ "${CC}" = 'clang' ]; then + # cd .. ; + # pwd ; + # ls ; + # rm -rf build/* ; + # cd build ; + # cmake .. ; + # scan-build make ; + # fi # Build for coveralls (should be the last) - |