diff options
Diffstat (limited to '.build.yml')
-rw-r--r-- | .build.yml | 11 |
1 files changed, 6 insertions, 5 deletions
@@ -99,11 +99,12 @@ before_scripts: - make install build_scripts: - - if [ ${DISTRO_NAME} == "debian" ];then - - export CFLAGS+=" -Wsign-compare -Wunused-parameter" - - cppcheck --enable=warning,style,performance,portability,information,missingInclude . - - fi - - +# No C/C++ code in this project (only Vala). So skip cppcheck run. +# - if [ ${DISTRO_NAME} == "debian" ];then +# - export CFLAGS+=" -Wsign-compare -Wunused-parameter" +# - cppcheck --enable=warning,style,performance,portability,information,missingInclude . +# - fi +# - - if [ -e ./CMakeLists.txt ]; then - if [ ${DISTRO_NAME} == "debian" ] || [ ${DISTRO_NAME} == "ubuntu" ]; then - scan-build $CHECKERS cmake . -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_VERBOSE_MAKEFILE=ON -DENABLE_TESTS=ON |