Okay this isn't going to work

This commit is contained in:
Pietro Gagliardi 2016-01-05 00:37:46 -05:00
parent 8672a46545
commit a620e3921e
1 changed files with 5 additions and 3 deletions

View File

@ -1,14 +1,16 @@
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:
- test Z$TRAVIS_OS_NAME = Zlinux && sudo apt-get update - sudo apt-get update
- test Z$TRAVIS_OS_NAME = Zlinux && { sudo apt-get install libgtk-3-dev -y || sudo apt-cache search libgtk3; } - sudo apt-get install libgtk-3-dev -y || sudo apt-cache search libgtk3
- make -f GNUmakefile - make -f GNUmakefile
- make -f GNUmakefile examples - make -f GNUmakefile examples
- make -f GNUmakefile test - make -f GNUmakefile test
# TODO osx
# need to figure out how to force language: objective-c and turn off the apt-get rules