summaryrefslogtreecommitdiffstats
path: root/.travis.yml
diff options
context:
space:
mode:
authorNico Schlömer <nico.schloemer@gmail.com>2015-02-03 17:40:14 +0200
committerNico Schlömer <nico.schloemer@gmail.com>2015-02-03 17:40:14 +0200
commit3b3d4ea8b6691798b0611ad9144ed46f45fd19d1 (patch)
tree33d60f1d06773fe0d3d83e4ef7a754fa71fa4f36 /.travis.yml
parent3907041ce811ef0d9bfc2f41f00997f8e7f2c9ac (diff)
Update .travis.yml
Don't compile with clang on travis; imcompatibilities with the old GCC yield errors, cf. <http://llvm.org/bugs/show_bug.cgi?id=13745>.
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml3
1 files changed, 2 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml
index f69ac82d28..240b4757bd 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -2,7 +2,8 @@ language: c++
# to run compilation/tests with gcc and clang
compiler:
- gcc
- - clang
+# Clang yields compile errors due to http://llvm.org/bugs/show_bug.cgi?id=13745. Wait for an upgrade of GCC on travis
+# - clang
before_install:
# update virtual machine
- sudo apt-get update -qq