From c58cbc26cc2a04fa06d22333ffe7ad52f7ede1fa Mon Sep 17 00:00:00 2001 From: Mario Trangoni Date: Sun, 11 Mar 2018 19:22:22 +0100 Subject: travis.yml: Add cppcheck - A tool for static C/C++ code analysis. --- .travis.yml | 19 +++++++++++++++++-- 1 file changed, 17 insertions(+), 2 deletions(-) (limited to '.travis.yml') diff --git a/.travis.yml b/.travis.yml index f8806d063..3f36340fe 100644 --- a/.travis.yml +++ b/.travis.yml @@ -5,6 +5,16 @@ language: cpp matrix: include: + - os: linux + addons: + apt: + sources: + - ubuntu-toolchain-r-test + env: + - MATRIX_EVAL="CC=gcc && CXX=g++" + - STATIC_ANALYSIS="yes" + fail_fast: true + - os: linux addons: apt: @@ -13,7 +23,7 @@ matrix: packages: - g++-4.9 env: - - MATRIX_EVAL="CC=gcc-4.9 && CXX=g++-4.9" + - MATRIX_EVAL="CC=gcc-4.9 && CXX=g++-4.9" - os: linux addons: @@ -47,10 +57,15 @@ matrix: before_install: - sudo apt-get update -qq + # cppcheck tool + - sudo apt-get install -y cppcheck/trusty-backports # imake - sudo apt-get install -y xutils-dev # X11 libaries - sudo apt-get install -y libxcomposite-dev libxfont-dev libxinerama-dev libxrandr-dev libxtst-dev x11proto-fonts-dev - eval "${MATRIX_EVAL}" script: - - make + # run static analysis tools + - ./run-static-analysis.sh + # build all packages + - make -- cgit v1.2.3