-
Arseny Kapoulkine authored
Use find -exec instead of xargs to work around differences between xargs on OSX and Linux. Use -b option of gcov - for some reason gcov on Travis can't find .gcno files otherwise (old version?). And finally enable config=coverage again.
Arseny Kapoulkine authoredUse find -exec instead of xargs to work around differences between xargs on OSX and Linux. Use -b option of gcov - for some reason gcov on Travis can't find .gcno files otherwise (old version?). And finally enable config=coverage again.
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
.travis.yml 249 B
sudo: false
language: cpp
compiler:
- clang
- gcc
env:
- DEFINES=standard
- DEFINES=PUGIXML_WCHAR_MODE
- DEFINES=PUGIXML_COMPACT
script: make test defines=$DEFINES config=coverage -j2
after_success: bash <(curl -s https://codecov.io/bash)