Browse Source

Need to investigate why travis OS X build miss GL_TEXTURE_RECTANGLE_ARB

Godzil 7 years ago
parent
commit
6f2bf79917
1 changed files with 12 additions and 0 deletions
  1. 12 0
      .travis.yml

+ 12 - 0
.travis.yml

@@ -1,12 +1,20 @@
 language: c
+
 git:
  submodule: true
+
 os:
  - linux
  - osx
+
+matrix:
+ allow_failures:
+    - os: osx
+
 compiler:
  - clang
  - gcc
+
 script: 
  - mkdir build
  - cd build 
@@ -18,10 +26,13 @@ script:
  - cmake -DUSE_ALLEGRO=OFF -DUSE_PROFILING=OFF -DCOVERALLS=ON -DCMAKE_BUILD_TYPE=Debug ..
  - cmake --build .
  - cmake --build . --target coveralls
+
 before_install:
   - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew update      ; fi
   - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install glew; fi
+
 install: true
+
 addons:
   apt:
     sources:
@@ -31,5 +42,6 @@ addons:
       - cmake-data
       - lcov
       - curl
+
 after_success:
   - bash <(curl -s https://codecov.io/bash)