Revision b4403e39f326f9238edebded52eea25b18a43f5b authored by Daniel Lee on 06 February 2014, 18:14:57 UTC, committed by Daniel Lee on 06 February 2014, 18:14:57 UTC
2 parent s 598b629 + c77c79c
Raw File
.travis.yml
language: cpp
compiler:
  - clang
  - gcc
env:
  - RUN_TARGET=build TEST_TARGET=test-unit
  - RUN_TARGET=docs
script: make CC="$CXX" ${RUN_TARGET} ${TEST_TARGET}
branches:
  only:
    - develop
    - master
notifications:
  recipients:
    - mc.stanislaw@gmail.com
  email:
    on_success: change
    on_failure: always
matrix:
  exclude: # only make docs once:
    - compiler: clang
      env: RUN_TARGET=docs
      script: make CC="$CXX" "${RUN_TARGET}" "${TEST_TARGET}"
      
back to top