https://github.com/philsquared/Catch
Raw File
Tip revision: c1ca0fdabe8def3e67d42b275d51ac383fd5819f authored by Phil Nash on 03 July 2015, 17:30:25 UTC
dev build 3
Tip revision: c1ca0fd
.travis.yml
language: cpp

compiler:
  - clang
  - gcc

env:
  - BUILD_TYPE=Debug
  - BUILD_TYPE=Release

install:
  - cmake -Hprojects/CMake -BBuild -DCMAKE_BUILD_TYPE=$BUILD_TYPE
  - cd Build
  - make
  - cd ..

script:
  - cd Build
  - ctest -V
back to top