From 0626908ca289f20347d6d72153c4112d5bdcc558 Mon Sep 17 00:00:00 2001 From: Thomas Brown Date: Fri, 20 Nov 2015 04:11:24 -0500 Subject: [PATCH] ci: Run Boost.Build tests on Travis. This now will run the tests against Python 2.6 as well as building the Boost.Jam engine. --- .travis.yml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 412238ef4..17af086fa 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,7 +2,13 @@ sudo: false os: - linux env: - - TOOLSET=gcc - - TOOLSET=clang + - TOOLSET=gcc TEST_ALL_EXTRAS= +# - TOOLSET=gcc TEST_ALL_EXTRAS=--extras + - TOOLSET=clang TEST_ALL_EXTRAS= +# - TOOLSET=clang TEST_ALL_EXTRAS=--extras +language: python +python: + - 2.6 script: - ./bootstrap.sh --with-toolset=${TOOLSET} + - cd test && python test_all.py ${TOOLSET} ${TEST_ALL_EXTRAS}