https://github.com/philsquared/Catch
Raw File
Tip revision: 5bbdc8fd38804c55f4967c135a06aa3925c72154 authored by Phil Nash on 15 July 2015, 22:03:11 UTC
Dev build 8
Tip revision: 5bbdc8f
.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