language: cpp matrix: include: - compiler: gcc os: linux - compiler: clang os: osx addons: apt: sources: - ubuntu-toolchain-r-test packages: - gcc-4.8 - g++-4.8 - clang before_script: - git clone --depth 1 https://github.com/bkaradzic/bx ../bx - git clone --depth 1 https://github.com/bkaradzic/bimg ../bimg script: - if [ "$TRAVIS_OS_NAME" == "linux" ]; then make build CXX="g++-4.8" CC="gcc-4.8"; fi - if [ "$TRAVIS_OS_NAME" == "osx" ]; then make build; fi branches: only: - master notifications: email: false osx_image: xcode7.3