git repos / PlatformFolders

.travis.yml

browsing at commit = b31160af03347df5f43c3adbae89a3f25b423a60

tags: 3.1

raw · blame · history

language: cpp
matrix:
  include:
    - os: linux
      env: BUILD_TYPE=Debug
      compiler: gcc
    - os: linux
      env: BUILD_TYPE=Debug
      compiler: clang
    - os: linux
      env: BUILD_TYPE=Release
      compiler: gcc
    - os: linux
      env: BUILD_TYPE=Release
      compiler: clang
    - os: osx
      env: BUILD_TYPE=Debug
      compiler: gcc
    - os: osx
      env: BUILD_TYPE=Debug
      compiler: clang
    - os: osx
      env: BUILD_TYPE=Release
      compiler: gcc
    - os: osx
      env: BUILD_TYPE=Release
      compiler: clang
before_script:
  - mkdir -p build && cd build
script:
  # Run cmake, then compile and run tests with make
  - cmake -DCMAKE_BUILD_TYPE=$BUILD_TYPE .. && make -j$(nproc) && make test
notifications:
  email: false