Skip to content

Commit

Permalink
Specify std=c++11 explicitly in Travis configurations
Browse files Browse the repository at this point in the history
That way the defaults in the Makefile only matter for local runs.
  • Loading branch information
zeux committed Jan 27, 2016
1 parent c3d27da commit c712dd8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ env:
- DEFINES=PUGIXML_WCHAR_MODE
- DEFINES=PUGIXML_COMPACT
script:
- make test config=coverage defines=$DEFINES -j2
- make test config=release defines=$DEFINES -j2
- make test cxxstd=c++98 defines=$DEFINES -j2
- 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

0 comments on commit c712dd8

Please sign in to comment.