Travis CI: test upgrading to container-based build

This commit is contained in:
omar 2015-10-19 19:57:46 +01:00
parent 217ef444d4
commit f11adc1c08
1 changed files with 9 additions and 4 deletions

View File

@ -1,4 +1,5 @@
language: cpp
sudo: false
os:
- linux
@ -7,9 +8,13 @@ compiler:
- gcc
- clang
before_install:
- if [ $TRAVIS_OS_NAME == linux ]; then sudo add-apt-repository -y ppa:pyglfw/pyglfw && sudo apt-get update -qq && sudo apt-get install -y --no-install-recommends libglfw3-dev libxrandr-dev libxi-dev libxxf86vm-dev; fi
- if [ $TRAVIS_OS_NAME == osx ]; then brew update && brew install glfw3; fi
addons:
apt:
packages:
- libglfw3-dev
- libxrandr-dev
- libxi-dev
- libxxf86vm-dev
script:
- make -C examples/opengl_example