pugixml/.travis.yml
Arseny Kapoulkine c712dd84ba Specify std=c++11 explicitly in Travis configurations
That way the defaults in the Makefile only matter for local runs.
2016-01-26 21:43:48 -08:00

17 lines
421 B
YAML

language: cpp
sudo: required
dist: trusty
os:
- linux
- osx
env:
- DEFINES=standard
- DEFINES=PUGIXML_WCHAR_MODE
- DEFINES=PUGIXML_COMPACT
script:
- 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
after_success: bash <(curl -s https://codecov.io/bash) -f pugixml.cpp.gcov