Files
oboe/.travis-install-deps.sh
Celtic Minstrel 5a4382bb7b Add OSX build to Travis matrix
Also allow the Linux build to fail, for now
2016-11-05 23:39:15 -04:00

9 lines
168 B
Bash
Executable File

#!/bin/bash
if [[ $TRAVIS_OS_NAME == 'osx' ]]; then
brew install scons sfml boost
else
sudo apt-get update -qq
sudo apt-get install -qq libsfml-dev libboost-dev
fi