mirror of
https://github.com/zeux/pugixml.git
synced 2025-01-15 02:17:56 +08:00
c7acc6d1f4
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.
12 lines
249 B
YAML
12 lines
249 B
YAML
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)
|