diff options
author | Arseny Kapoulkine <arseny.kapoulkine@gmail.com> | 2016-01-26 21:43:48 -0800 |
---|---|---|
committer | Arseny Kapoulkine <arseny.kapoulkine@gmail.com> | 2016-01-26 21:43:48 -0800 |
commit | c712dd84ba3aa81db172debfb2ad76c1fffadb75 (patch) | |
tree | 6d901747b012bca1f1c2f92b6a20f800b40546fe | |
parent | c3d27daf8e3dc95eb7ae38e66cd827eb061f7b99 (diff) |
Specify std=c++11 explicitly in Travis configurations
That way the defaults in the Makefile only matter for local runs.
-rw-r--r-- | .travis.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.travis.yml b/.travis.yml index 5ee58a8..bf734b9 100644 --- a/.travis.yml +++ b/.travis.yml @@ -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 |