You can not select more than 25 topics
Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- language: cpp
-
- compiler:
- - gcc
- - clang
-
- addons:
- apt:
- packages:
- - cppcheck
-
- os:
- - linux
- - osx
-
- before_install:
- - echo $LANG
- - echo $LC_ALL
- - set -e
-
- install:
- - sh autogen.sh
-
- before_script:
- - ./configure
-
- script:
- - make
-
- after_success:
- - make check
- - if type cppcheck &> /dev/null ; then cppcheck --error-exitcode=1 --quiet *.h *.c tests/ ; fi
|