forked from stan-dev/math
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
90 lines (83 loc) · 2.65 KB
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
language: cpp
before_script:
- eval "${MATRIX_EVAL}"
- echo ${CXX}
- ${CXX} --version
- echo "CC=$CXX" > make/local
linux_clang: &linux_clang
os: linux
compiler: "clang-3.8"
addons:
apt:
sources: [ 'ubuntu-toolchain-r-test', 'llvm-toolchain-precise-3.8' ]
packages: [ 'clang-3.8', 'libc++-dev' ]
linux_gcc: &linux_gcc
os: linux
compiler: "gcc-4.9"
addons:
apt:
sources: [ 'ubuntu-toolchain-r-test' ]
packages: [ 'g++-4.9' ]
matrix:
fast_finish: true
include:
- <<: *linux_clang
env:
- MATRIX_EVAL="CXX=clang++-3.8"
TESTFOLDER="test/unit/math/memory test/unit/math/prim/scal test/unit/math/prim/arr"
- <<: *linux_clang
env:
- MATRIX_EVAL="CXX=clang++-3.8"
TESTFOLDER="test/unit/math/prim/mat/err test/unit/math/prim/mat/meta test/unit/math/prim/mat/prob test/unit/math/prim/mat/vectorize"
- <<: *linux_clang
env:
- MATRIX_EVAL="CXX=clang++-3.8"
TESTFOLDER=test/unit/math/prim/mat/fun
- <<: *linux_clang
env:
- MATRIX_EVAL="CXX=clang++-3.8"
TESTFOLDER="test/unit/math/rev/scal test/unit/math/rev/arr"
- <<: *linux_clang
env:
- MATRIX_EVAL="CXX=clang++-3.8"
TESTFOLDER=test/unit/math/rev/mat
- <<: *linux_clang
env:
- MATRIX_EVAL="CXX=clang++-3.8"
TESTFOLDER=test/unit/math/fwd/mat
- <<: *linux_clang
env:
- MATRIX_EVAL="CXX=clang++-3.8"
TESTFOLDER="test/unit/math/fwd/arr test/unit/math/fwd/core test/unit/math/fwd/scal"
- <<: *linux_gcc
env:
- MATRIX_EVAL="CXX=g++-4.9"
TESTFOLDER="test/unit/math/memory test/unit/math/prim/scal test/unit/math/prim/arr"
- <<: *linux_gcc
env:
- MATRIX_EVAL="CXX=g++-4.9"
TESTFOLDER="test/unit/math/prim/mat/err test/unit/math/prim/mat/meta test/unit/math/prim/mat/prob test/unit/math/prim/mat/vectorize"
- <<: *linux_gcc
env:
- MATRIX_EVAL="CXX=g++-4.9"
TESTFOLDER=test/unit/math/prim/mat/fun
- <<: *linux_gcc
env:
- MATRIX_EVAL="CXX=g++-4.9"
TESTFOLDER="test/unit/math/rev/scal test/unit/math/rev/arr"
- <<: *linux_gcc
env:
- MATRIX_EVAL="CXX=g++-4.9"
TESTFOLDER=test/unit/math/rev/mat
- <<: *linux_gcc
env:
- MATRIX_EVAL="CXX=g++-4.9"
TESTFOLDER=test/unit/math/fwd/mat
- <<: *linux_gcc
env:
- MATRIX_EVAL="CXX=g++-4.9"
TESTFOLDER="test/unit/math/fwd/arr test/unit/math/fwd/core test/unit/math/fwd/scal"
# - TESTFOLDER=test/unit/math/mix # times out on travis
script: ./runTests.py -j2 $TESTFOLDER
sudo: false
dist: trusty