2014-02-09 00:05:19 +00:00
|
|
|
language: cpp
|
2016-01-26 21:53:16 +01:00
|
|
|
sudo: required
|
|
|
|
dist: trusty
|
2015-09-20 11:31:58 -07:00
|
|
|
os:
|
|
|
|
- linux
|
|
|
|
- osx
|
2014-02-09 21:56:30 +00:00
|
|
|
env:
|
2015-10-24 14:03:29 -07:00
|
|
|
- DEFINES=standard
|
|
|
|
- DEFINES=PUGIXML_WCHAR_MODE
|
|
|
|
- DEFINES=PUGIXML_COMPACT
|
|
|
|
script:
|
|
|
|
- make test config=coverage defines=$DEFINES -j2
|
|
|
|
- make test config=release defines=$DEFINES -j2
|
2016-01-24 19:56:54 +01:00
|
|
|
- make test cxxstd=c++98 defines=$DEFINES -j2
|
2015-10-24 14:03:29 -07:00
|
|
|
|
2015-08-25 10:24:49 -07:00
|
|
|
after_success: bash <(curl -s https://codecov.io/bash) -f pugixml.cpp.gcov
|