https://github.com/philsquared/Catch
Revision acbb7b73c0a26a94edb5a805d66b089db76299b2 authored by Phil Nash on 30 June 2014, 06:50:16 UTC, committed by Phil Nash on 30 June 2014, 06:50:16 UTC
2 parent s acdd3b5 + c602238
Raw File
Tip revision: acbb7b73c0a26a94edb5a805d66b089db76299b2 authored by Phil Nash on 30 June 2014, 06:50:16 UTC
Merge pull request #287 from amorenoc/master
Tip revision: acbb7b7
.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