https://github.com/stan-dev/stan
Raw File
Tip revision: 3228a4f0e6f2b405444219e9c62951c046c6025e authored by Daniel Lee on 07 September 2016, 02:06:37 UTC
Merge pull request #2055 from stan-dev/release/v2.12.0
Tip revision: 3228a4f
.travis.yml
language: cpp

sudo: false

os:
  - linux
  - osx
  
compiler:
  - clang
  - gcc

before_install: make math-revert

before_script: echo "CC=$CXX" > make/local

matrix:
  fast_finish: true

env:
  -  TESTFOLDER=src/test/unit/interface_callbacks
  -  TESTFOLDER=src/test/unit/io
  -  TESTFOLDER=src/test/unit/lang
  -  TESTFOLDER=src/test/unit/mcmc
  -  TESTFOLDER=src/test/unit/model
  -  TESTFOLDER=src/test/unit/optimization
  -  TESTFOLDER=src/test/unit/services
  -  TESTFOLDER=src/test/unit/variational

script: ./runTests.py -j2 $TESTFOLDER
back to top