Revision 3e24dd7e737a2d313ec331134373aa68adb2bf4f authored by Mitzi Morris on 08 March 2017, 18:42:06 UTC, committed by Mitzi Morris on 08 March 2017, 18:42:06 UTC
1 parent 42b1f8f
Raw File
.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
  exclude:
    - os: osx
      compiler: gcc

env:
  -  TESTFOLDER=src/test/unit/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
  -  TESTFOLDER=src/test/unit/version_test.cpp

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