SQLiteCpp/.travis.yml
2014-03-13 22:47:09 +01:00

20 lines
355 B
YAML

language: cpp
compiler:
- gcc
- clang
before_install:
- sudo apt-get update -qq
- sudo apt-get install -qq cppcheck
# using a symbolic link to get the "make test" to work as if launched from the root directorys
before_script:
- mkdir build
- cd build
- cmake ..
- ln -s ../examples examples
script: make && ctest --output-on-failure