https://github.com/stan-dev/stan
Raw File
Tip revision: 17ad6a65c7143096732f8e787901b792e6690702 authored by Rob Trangucci on 11 February 2015, 23:48:20 UTC
b 583 k-simplex mixture function: adds math/matrix version of k-simplex mixture fuction, with exception and value tests
Tip revision: 17ad6a6
.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