1 language: cpp 2 3 os: 4 - linux 5 - osx 6 7 compiler: 8 - g++ 9 - clang 10 11 before_script: cmake . 12 13 script: 14 - make -j3 15 - make test 16