Travis: Fix Linux build and disallow failures

This commit is contained in:
2017-01-30 15:17:11 -05:00
parent ac15358c46
commit 4ee6371f15
3 changed files with 2 additions and 4 deletions

View File

@@ -7,5 +7,5 @@ if [[ $TRAVIS_OS_NAME == 'osx' ]]; then
brew install scons sfml
else
sudo apt-get update -qq
sudo apt-get install -qq libsfml-dev libboost-dev
sudo apt-get install -qq libsfml-dev libboost-dev libboost-filesystem-dev libboost-thread-dev
fi

View File

@@ -9,8 +9,6 @@ compiler:
- clang
matrix:
allow_failures:
- os: linux
include:
- os: linux
sudo: required

View File

@@ -235,7 +235,7 @@ if not env.GetOption('clean'):
print disp, 'must be installed!'
Exit(1)
boost_versions = ['-1_55', '-1_56', '-1_57', '-1_58'] # This is a bit of a hack. :(
boost_versions = ['-1_54', '-1_55', '-1_56', '-1_57', '-1_58'] # This is a bit of a hack. :(
bundled_libs = []
check_header('boost/lexical_cast.hpp', 'Boost.LexicalCast')