Add GLEW_EGL builds to Travis

This commit is contained in:
Nigel Stewart 2016-01-23 16:37:59 +10:00
parent c3ea366c9d
commit 97bba61a10
1 changed files with 9 additions and 4 deletions

View File

@ -5,10 +5,14 @@ script:
- make -C auto clobber - make -C auto clobber
- make extensions - make extensions
- make dist-src - make dist-src
- make clean; SYSTEM=linux make - make clean; SYSTEM=linux make
- make clean; SYSTEM=linux-osmesa make - make clean; SYSTEM=linux-osmesa make
- pushd build/cmake; git clean -xdf .; cmake -G 'Unix Makefiles' . ; make; popd - make clean; SYSTEM=linux-egl make
- pushd build/cmake; git clean -xdf .; cmake -G 'Unix Makefiles' -DGLEW_OSMESA=1 .; make; popd - make clean; SYSTEM=linux-clang make
- make clean; SYSTEM=linux-clang-egl make
- pushd build/cmake; git clean -xdf .; cmake -G 'Unix Makefiles' . ; make; popd
- pushd build/cmake; git clean -xdf .; cmake -G 'Unix Makefiles' -DGLEW_OSMESA=1 . ; make; popd
- pushd build/cmake; git clean -xdf .; cmake -G 'Unix Makefiles' -DGLEW_EGL=1 . ; make; popd
addons: addons:
apt: apt:
packages: packages:
@ -16,6 +20,7 @@ addons:
- cmake - cmake
- dos2unix - dos2unix
- libosmesa6-dev - libosmesa6-dev
- libegl1-mesa-dev
artifacts: artifacts:
bucket: glew bucket: glew
s3_region: "us-east-1" s3_region: "us-east-1"