aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--.travis.yml52
1 files changed, 40 insertions, 12 deletions
diff --git a/.travis.yml b/.travis.yml
index ee486d7..9ee5bd4 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,16 +1,44 @@
-dist: ubuntu-precise
+#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:
- packages:
- - clang-3.9
- - libclang-3.9-dev
- - libllvm3.9
- - libstdc++-6-dev
- env: COMPILER=clang++-3.9
+ - os: linux
+ compiler: clang
+ addons:
+ apt:
+ sources: ['ubuntu-toolchain-r-test', 'llvm-toolchain-precise-3.6']
+ packages: ['clang-3.6']
+ env: COMPILER=clang++-3.6
+
+# 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 \ No newline at end of file
+script:
+ make CXX=$COMPILER \ No newline at end of file