https://github.com/stan-dev/stan
Raw File
Tip revision: 597394d9ba951f112f033d7083b251e91bcedbde authored by Kevin S. Van Horn on 03 March 2014, 02:57:51 UTC
Merge branch 'develop' of https://github.com/stan-dev/stan into develop
Tip revision: 597394d
.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