Files
thirdparty-ArduinoJson/.travis.yml
2015-02-03 14:38:44 +01:00

12 lines
253 B
YAML

language: c++
compiler:
- gcc
- clang
before_install:
- sudo pip install cpp-coveralls
before_script:
- cmake -DCOVERAGE=true .
script:
- make && make test
after_success:
- coveralls --exclude test --exclude third-party --gcov-options '\-lp'