Simple Travis example for C++ using modern GCC and Clang compilers.
(For a version using default compilers see: travis-hello-cpp)
Why a separate vesrion? As you can see adding -std=c++14 to Makefile has resulted in breaking the build for both GCC and Clang because Travis uses old versions of compilers by default. The changes to .travis.yml resulted in fixing it. The downside is that the tests now take longer. If you don't need modern C++ then the example in travis-hello-cpp is faster.
Test results:
Important files:
For more info and examples for other languages see:
For any bug reports or feature requests please post an issue on GitHub:
MIT License (Expat). See LICENSE.md for details.