aboutsummaryrefslogtreecommitdiffstats
path: root/.travis.yml
diff options
context:
space:
mode:
authorbloodstalker <thabogre@gmail.com>2016-12-15 12:09:28 +0000
committerbloodstalker <thabogre@gmail.com>2016-12-15 12:09:28 +0000
commit189550455b29ef34824bd49bd97ac37ce2e815b5 (patch)
tree69743ce4a39edac62e1251b17ddefde7844ef16c /.travis.yml
parentstill trying... (diff)
downloadmutator-189550455b29ef34824bd49bd97ac37ce2e815b5.tar.gz
mutator-189550455b29ef34824bd49bd97ac37ce2e815b5.zip
still trying...
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml59
1 files changed, 45 insertions, 14 deletions
diff --git a/.travis.yml b/.travis.yml
index 3e5a38f..29e6260 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,18 +1,49 @@
-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
+sudo: required
+
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
- - LLVMCONFIG=llvm-config-3.9
+ - os: linux
+ compiler: clang
+ addons:
+ apt:
+ sources: ['ubuntu-toolchain-r-test', 'llvm-toolchain-precise-3.9']
+ packages: ['clang-3.9']
+ env:
+ - COMPILER=clang++-3.9
+ - LLVMCONFIG=llvm-config-3.9
+
+# 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++
+before_install:
+ - sudo apt-get update -qq
-script: make CXX=$COMPILER LLVM_CONF=$LLVMCONFIG \ No newline at end of file
+script:
+ make CXX=$COMPILER LLVM_CONF=$LLVMCONFIG \ No newline at end of file