https://github.com/philsquared/Catch
Raw File
Tip revision: 93a842e2f0e9c51296cfbc81c27004e515643050 authored by Phil Nash on 13 July 2015, 05:36:07 UTC
dev build 6
Tip revision: 93a842e
.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