Browse Source

Last try for Travis

Thomas Buck 8 years ago
parent
commit
5c19155d92
2 changed files with 6 additions and 1 deletions
  1. 5
    0
      .travis.yml
  2. 1
    1
      cmake/travis_install_linux.sh

+ 5
- 0
.travis.yml View File

@@ -32,6 +32,11 @@ os:
32 32
     - linux
33 33
     - osx
34 34
 
35
+matrix:
36
+    allow_failures:
37
+        - os: linux
38
+          compiler: clang
39
+
35 40
 env:
36 41
     global:
37 42
         # The next declaration is the encrypted COVERITY_SCAN_TOKEN, created

+ 1
- 1
cmake/travis_install_linux.sh View File

@@ -5,7 +5,7 @@ sudo apt-get -qq -y install libsdl2-dev libsdl2-ttf-dev libalut-dev libpng12-dev
5 5
 if [ "$CC" = "gcc" ]; then sudo apt-get install gcc-4.8; fi
6 6
 if [ "$CXX" = "g++" ]; then sudo apt-get install g++-4.8; fi
7 7
 
8
-if [ "$CXX" = "clang++" ]; then sudo apt-get install --allow-unauthenticated clang-3.5; fi
8
+if [ "$CXX" = "clang++" ]; then sudo apt-get -y install --allow-unauthenticated clang-3.5; fi
9 9
 
10 10
 wget 'http://downloads.sourceforge.net/project/ogl-math/glm-0.9.6.3/glm-0.9.6.3.zip'
11 11
 unzip glm-0.9.6.3.zip

Loading…
Cancel
Save