pugixml/.travis.yml
Stephan Beyer 32f05d55ae Use either -std=c++03 or -std=c++11
No intermediate pseudo-standards should be used when compiling.
The option -std=c++11 is used by default now.
Compile with `make defines=PUGIXML_NO_CXX11` to use -std=c++03 instead.
2016-01-24 14:46:37 +01:00

15 lines
360 B
YAML

sudo: false
language: cpp
os:
- linux
- osx
env:
- DEFINES=PUGIXML_NO_CXX11
- DEFINES=PUGIXML_NO_CXX11,PUGIXML_WCHAR_MODE
- DEFINES=PUGIXML_NO_CXX11,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