
Several issues was detected with linux build: - travis_wait raise timeout - --jobs=2 sometimes fails - add flag BOOST_NO_CXX11_SCOPED_ENUMS to fix compilation with old boost filesystme - add missing tool xmllint
12 lines
300 B
Bash
Executable File
12 lines
300 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -ev
|
|
|
|
if [[ $TRAVIS_OS_NAME == 'osx' ]]; then
|
|
# Also needs boost, but apparently that's already installed in Travis
|
|
brew install scons sfml
|
|
else
|
|
sudo apt-get update -qq
|
|
sudo apt-get install -qq libsfml-dev libboost-dev libboost-filesystem-dev libboost-thread-dev libxml2-utils
|
|
fi
|