Need to investigate why travis OS X build miss GL_TEXTURE_RECTANGLE_ARB

This commit is contained in:
Godzil 2017-03-17 13:51:38 +01:00
parent c7c21ce752
commit 6f2bf79917

View File

@ -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)