MacOS build test

This commit is contained in:
Charles J. Cliffe 2019-01-08 21:05:19 -05:00
parent c133f1294f
commit b234a51ef7
3 changed files with 8 additions and 1 deletions

View File

@ -1,3 +1,6 @@
os:
- linux
- osx
dist: trusty
language: cpp
addons:
@ -7,7 +10,10 @@ addons:
- libgtk-3-dev
- freeglut3
- freeglut3-dev
script: bash travis-ci/build.sh
script:
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then bash travis-ci/build_macos.sh; fi
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then bash travis-ci/build_linux.sh; fi
cache:
directories:
- /home/travis/build/wxWidgets/staticlib
- /Users/travis/build/wxWidgets/staticlib

1
travis-ci/build_macos.sh Normal file
View File

@ -0,0 +1 @@
echo "Hello from OSX O_o"