Files
openmesh/CI/ci-cppcheck.sh

19 lines
498 B
Bash
Raw Normal View History

2016-05-10 15:17:36 +02:00
#!/bin/bash
# Run cppcheck and output into file
cppcheck --enable=all . -I src -i Doc/ --force --suppress=unusedFunction --quiet vi src/OpenMesh/Tools/Utils/Timer.hh -Umin -Umax -UBMPOSTFIX -DOPENMESHDLLEXPORT="" &> cppcheck.log
# Echo output to command line for simple analysis via gitlab
cat cppcheck.log
COUNT=$(wc -l < cppcheck.log )
if [ $COUNT -gt 1 ]; then
echo "Error Count is $COUNT which is too High! CPPCHECK Run failed";
exit 1;
else
echo "Error Count is $COUNT ... OK"
fi