aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.build.yml11
1 files changed, 6 insertions, 5 deletions
diff --git a/.build.yml b/.build.yml
index f92d0d6..9130aec 100644
--- a/.build.yml
+++ b/.build.yml
@@ -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