Files
thirdparty-ArduinoJson/.travis.yml
2014-11-30 15:11:19 +01:00

12 lines
248 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 --include include --include src --gcov-options '\-lp'