From 7205bc23e318178972f2cdfd20d4686a2883d1c4 Mon Sep 17 00:00:00 2001 From: chme Date: Sun, 25 Jun 2017 08:42:52 +0200 Subject: [PATCH] [travis] Run make befor running scan-build scan-build --status-bugs does not return an error code if make fails with compile errors. Therefor run make as a seperate step to ensure the travis build does not report a false positive. --- .travis.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.travis.yml b/.travis.yml index 511e546c..8b7e8b04 100644 --- a/.travis.yml +++ b/.travis.yml @@ -12,6 +12,8 @@ env: script: - autoreconf -fi - ./configure $CFG + - make + - make clean - scan-build --status-bugs -disable-checker deadcode.DeadStores make before_install: