Revision 813b8ebd6887e6f55fa6aab3f470889011347515 authored by seantalts on 15 February 2017, 21:01:10 UTC, committed by GitHub on 15 February 2017, 21:01:10 UTC
2 parent s 06c71a2 + a52707c
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