before_install: - sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y - sudo apt-get update -qq - if [ "$CXX" = "g++" ]; then sudo apt-get install -qq g++-4.8; fi - if [ "$CXX" = "g++" ]; then export CXX="g++-4.8" CC="gcc-4.8" LD="g++-4.8"; fi - sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-4.8 90 - pip install --user cpp-coveralls language: cpp compiler: - gcc dist: trusty script: - make COV=true - ./testrunner -s after_success: - coveralls --exclude lib --exclude tests --gcov-options '\-lp'