From 0687af2ce53ceeecc22332f8fbf0d013b834fd25 Mon Sep 17 00:00:00 2001 From: ocornut Date: Sat, 6 Dec 2014 23:01:41 +0000 Subject: [PATCH] Setup Travis CI integration Failing to get glfw3 for ubuntu, trying osx/gcc --- .travis.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.travis.yml b/.travis.yml index 180e7492..7fa9138c 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,10 +1,14 @@ language: cpp +os: + - osx + compiler: - gcc before_install: - if [ $TRAVIS_OS_NAME == linux ]; then sudo apt-get update -qq && sudo apt-get install -y --no-install-recommends libglfw3-dev libglew-dev; fi + - if [ $TRAVIS_OS_NAME == osx ]; then brew update && brew install glew && brew install glfw3; fi script: - cd examples/opengl_example && make