blob: 58c5d983d7704011cc6a8af1523ccc0a98a2e97f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
language: cpp
sudo: required
dist: trusty
os:
- linux
- osx
env:
- DEFINES=standard
- DEFINES=PUGIXML_WCHAR_MODE
- DEFINES=PUGIXML_COMPACT
script:
- make test config=coverage defines=$DEFINES -j2
- make test config=release defines=$DEFINES -j2
after_success: bash <(curl -s https://codecov.io/bash) -f pugixml.cpp.gcov
|