Skip to content

Commit

Permalink
Remove -std=c++14 and -std=c++17 from .travis.yml.
Browse files Browse the repository at this point in the history
Travis has too old compilers in their OS images and I don't want bother
with their upgrading.
  • Loading branch information
mity committed Sep 19, 2017
1 parent 2c01be0 commit 1daba3d
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .travis.yml
Expand Up @@ -19,10 +19,11 @@ env:
- CFLAGS="-std=c11 -pedantic" CONFIG=Release
- CXXFLAGS="-std=c++11 -pedantic" CONFIG=Debug # C++11
- CXXFLAGS="-std=c++11 -pedantic" CONFIG=Release
- CXXFLAGS="-std=c++14 -pedantic" CONFIG=Debug # C++14
- CXXFLAGS="-std=c++14 -pedantic" CONFIG=Release
- CXXFLAGS="-std=c++17 -pedantic" CONFIG=Debug # C++17
- CXXFLAGS="-std=c++17 -pedantic" CONFIG=Release
# Too old compilers on travis-ci.org for these:
#- CXXFLAGS="-std=c++14 -pedantic" CONFIG=Debug # C++14
#- CXXFLAGS="-std=c++14 -pedantic" CONFIG=Release
#- CXXFLAGS="-std=c++17 -pedantic" CONFIG=Debug # C++17
#- CXXFLAGS="-std=c++17 -pedantic" CONFIG=Release

before_script:
- mkdir build
Expand Down
4 changes: 4 additions & 0 deletions README.md
@@ -1,3 +1,7 @@
[![Build status (travis-ci.com)](https://img.shields.io/travis/mity/acutest/master.svg?label=linux%20build)](https://travis-ci.org/mity/acutest)
[![Build status (appveyor.com)](https://img.shields.io/appveyor/ci/mity/acutest/master.svg?label=windows%20build)](https://ci.appveyor.com/project/mity/acutest/branch/master)


# Acutest Readme

Home: http://github.com/mity/acutest
Expand Down

0 comments on commit 1daba3d

Please sign in to comment.