aboutsummaryrefslogtreecommitdiffstats
path: root/.travis.yml
blob: 09f3808313a5b43defa365900d16898f546d9ec7 (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<
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
            - zlib1g-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
            - zlib1g-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
            - zlib1g-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
            - zlib1g-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