Add Travis support

This commit is contained in:
sublimator
2016-04-22 11:09:36 -04:00
committed by Vinnie Falco
parent 5602a24b22
commit 0061f03cef
5 changed files with 139 additions and 1 deletions

11
scripts/build-and-test.sh Executable file
View File

@@ -0,0 +1,11 @@
#!/bin/bash -u
# We use set -e and bash with -u to bail on first non zero exit code of any
# processes launched or upon any unbound variable
set -e
__dirname=$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )
echo "using toolset: $CC"
echo "using variant: $VARIANT"
$BOOST_ROOT/bjam toolset=$CC variant=$VARIANT
`find . -name "core_tests"`
`find . -name "http_tests"`