2
0
mirror of https://github.com/boostorg/build.git synced 2026-02-20 14:42:14 +00:00

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.
This commit is contained in:
Thomas Brown
2015-11-20 04:11:24 -05:00
parent 4d7edbdd53
commit 0626908ca2

View File

@@ -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}