aboutsummaryrefslogtreecommitdiffstats
path: root/.travis.yml
blob: 9e3600214e35b99a386055dfbcffefa1b077d1bb (plain) (blame)
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
#dist: ubuntu-precise
#language: cpp
#matrix:
#  include:
#    os: linux
#    compiler: clang
#    addons: 
#      apt: 
#        packages: 
#          - clang-3.9
#          - libclang-3.9-dev
#          - libllvm3.9
#          - libstdc++-6-dev
#    env: COMPILER=clang++-3.9

#script: make CXX=$COMPILER

language: cpp
matrix:
  include:
    - os: linux
      compiler: clang
      addons:
        apt:
          sources: ['ubuntu-toolchain-r-test', 'llvm-toolchain-precise-3.8']
          packages: ['clang-3.8']
      env: COMPILER=clang++-3.8

# Activate when 3.7 is released and the repository is available
#    - os: linux
#      compiler: clang
#      addons:
#        apt:
#          sources: ['ubuntu-toolchain-r-test', 'llvm-toolchain-precise-3.7']
#          packages: ['clang-3.7']
#      env: COMPILER=clang++-3.7

# Activate when we are allowed to use MacOS X
#    - os: osx
#      compiler: clang
#      env: COMPILER=clang++

script:
  make CXX=$COMPILER