mirror of
https://github.com/eledio-devices/thirdparty-ArduinoJson.git
synced 2025-11-01 00:38:27 +01:00
11 lines
256 B
YAML
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
|