[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.
This commit is contained in:
chme 2017-06-25 08:42:52 +02:00
parent f4e171db75
commit 7205bc23e3

View File

@ -12,6 +12,8 @@ env:
script:
- autoreconf -fi
- ./configure $CFG
- make
- make clean
- scan-build --status-bugs -disable-checker deadcode.DeadStores make
before_install: