summaryrefslogtreecommitdiff
path: root/.travis.yml
blob: c253b2ff7964814493bd8feea4a883db1f7d697f (plain)
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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
sudo: false
language: cpp

cache:
 ccache: true
 directories:
  - ~/.local-bin


env:
  global:
    - MAKEFLAGS="-j 2"

matrix:
  include:
    # Latest gcc-4.8, earliest version supported by Travis
    - os: linux
      addons:
        apt:
          packages:
            - g++-4.8
            - gperf
            - build-essential
            - bison
            - flex
            - libreadline-dev
            - gawk
            - tcl-dev
            - libffi-dev
            - git
            - graphviz
            - xdot
            - pkg-config
            - python
            - python3
            - libboost-system-dev
            - libboost-python-dev
            - libboost-filesystem-dev
      env:
        - MATRIX_EVAL="CONFIG=gcc && CC=gcc-4.8 && CXX=g++-4.8"

    # Latest gcc supported on Travis Linux
    - os: linux
      addons:
        apt:
          sources:
            - ubuntu-toolchain-r-test
          packages:
            - g++-9
            - gperf
            - build-essential
            - bison
            - flex
            - libreadline-dev
            - gawk
            - tcl-dev
            - libffi-dev
            - git
            - graphviz
            - xdot
            - pkg-config
            - python
            - python3
            - libboost-system-dev
            - libboost-python-dev
            - libboost-filesystem-dev
      env:
        - MATRIX_EVAL="CONFIG=gcc && CC=gcc-9 && CXX=g++-9"

    # Clang which ships on Trusty Linux
    - os: linux
      addons:
        apt:
          sources:
            - ubuntu-toolchain-r-test
            - llvm-toolchain-precise-3.8
          packages:
            - clang-3.8
            - gperf
            - build-essential
            - bison
            - flex
            - libreadline-dev
            - gawk
            - tcl-dev
            - libffi-dev
            - git
            - graphviz
            - xdot
            - pkg-config
            - python
            - python3
            - libboost-system-dev
            - libboost-python-dev
            - libboost-filesystem-dev
      env:
        - MATRIX_EVAL="CONFIG=clang && CC=clang-3.8 && CXX=clang++-3.8"

    # Latest clang supported by Travis Linux
    - os: linux
      addons:
        apt:
          sources:
            - llvm-toolchain-xenial-8
          packages:
            - clang-8
            - gperf
            - build-essential
            - bison
            - flex
            - libreadline-dev
            - gawk
            - tcl-dev
            - libffi-dev
            - git
            - graphviz
            - xdot
            - pkg-config
            - python
            - python3
            - libboost-system-dev
            - libboost-python-dev
            - libboost-filesystem-dev
      env:
        - MATRIX_EVAL="CONFIG=clang && CC=clang-8 && CXX=clang++-8"

#   # Latest clang on Mac OS X
#   - os: osx
#     osx_image: xcode9.4
#     env:
#       - MATRIX_EVAL="CONFIG=clang && CC=clang && CXX=clang++"

before_install:
  - ./.travis/setup.sh

script:
  - ./.travis/build-and-test.sh

after_success:
  - ./.travis/deploy-after-success.sh