Let's try adding OS X to the Travis file.
This commit is contained in:
parent
84b392d0f9
commit
0713e36e57
|
@ -1,11 +1,14 @@
|
||||||
|
os:
|
||||||
|
- 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: cpp
|
language: c
|
||||||
script:
|
script:
|
||||||
- sudo apt-get update
|
- [ Z$TRAVIS_OS_NAME = Zlinux ] && sudo apt-get update
|
||||||
- sudo apt-get install libgtk-3-dev -y || sudo apt-cache search libgtk3
|
- [ Z$TRAVIS_OS_NAME = Zlinux ] && { 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
|
||||||
|
|
Loading…
Reference in New Issue