Merge branch 'master' of github.com:andlabs/libui

This commit is contained in:
Pietro Gagliardi 2016-05-24 00:58:33 -04:00
commit 3272515de6
1 changed files with 3 additions and 5 deletions

View File

@ -1,16 +1,14 @@
os: os:
- linux - linux
- osx
# This makes us use Ubuntu 14 instead of 12 # This makes us use Ubuntu 14 instead of 12
dist: trusty dist: trusty
language: c language: c
script: script:
- sudo apt-get update - if [ "$TRAVIS_OS_NAME" == "linux" ]; then sudo apt-get update; fi
- sudo apt-get install libgtk-3-dev -y || sudo apt-cache search libgtk3 - if [ "$TRAVIS_OS_NAME" == "linux" ]; then sudo apt-get install libgtk-3-dev -y || sudo apt-cache search libgtk3; fi
- make -f GNUmakefile - make -f GNUmakefile
- make -f GNUmakefile test - make -f GNUmakefile test
- make -f GNUmakefile examples - make -f GNUmakefile examples
# TODO osx
# need to figure out how to force language: objective-c and turn off the apt-get rules