2014-02-09 04:05:19 +04:00
|
|
|
language: cpp
|
2016-01-26 23:53:16 +03:00
|
|
|
sudo: required
|
|
|
|
|
dist: trusty
|
2015-09-20 21:31:58 +03:00
|
|
|
os:
|
|
|
|
|
- linux
|
|
|
|
|
- osx
|
2014-02-10 01:56:30 +04:00
|
|
|
env:
|
2015-10-25 00:03:29 +03:00
|
|
|
- DEFINES=standard
|
|
|
|
|
- DEFINES=PUGIXML_WCHAR_MODE
|
|
|
|
|
- DEFINES=PUGIXML_COMPACT
|
2017-01-30 08:21:58 +03:00
|
|
|
- DEFINES=PUGIXML_NO_EXCEPTIONS
|
2015-10-25 00:03:29 +03:00
|
|
|
script:
|
2016-01-27 08:43:48 +03:00
|
|
|
- make test cxxstd=c++11 defines=$DEFINES config=coverage -j2
|
|
|
|
|
- make test cxxstd=c++11 defines=$DEFINES config=release -j2
|
|
|
|
|
- make test cxxstd=c++98 defines=$DEFINES config=debug -j2
|
2015-10-25 00:03:29 +03:00
|
|
|
|
2017-06-15 19:28:31 +03:00
|
|
|
after_success:
|
|
|
|
|
- sed -e "s/#####\(.*\)\(\/\/ unreachable.*\)/ 1\1\2/" -i pugixml.cpp.gcov
|
|
|
|
|
- bash <(curl -s https://codecov.io/bash) -f pugixml.cpp.gcov
|