Files
thirdparty-ArduinoJson/.travis.yml
2015-07-10 22:11:26 +02:00

11 lines
256 B
YAML

language: c++
compiler:
- gcc
- clang
before_install:
- sudo pip install cpp-coveralls
script:
- cmake -DCOVERAGE=true . && make && make test
after_success:
- if [ "$CC" = "gcc" ]; then coveralls --exclude third-party --gcov-options '\-lp'; fi