summaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authorRene Rivera <grafikrobot@gmail.com>2016-06-13 11:12:34 -0500
committerRene Rivera <grafikrobot@gmail.com>2016-06-14 11:06:20 -0500
commit338ccef415cb7c088f59f527324b60c90bd2b94e (patch)
treef857bb3fa8553999768b57feb6558f4608fab312 /.travis.yml
parent7ef301f7385234ec5d51092ca52c38037f3d0791 (diff)
downloadboost-338ccef415cb7c088f59f527324b60c90bd2b94e.tar.gz
Add library requirements testing to Travis-CI.
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml7
1 files changed, 7 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml
index 70b29e1352..4ed9d4f1dc 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -48,6 +48,9 @@ matrix:
# Build release package for CRLF end-of-line style text files (i.e. for Windows).
- env: RELEASE_BUILD=CRLF
+
+ # Library requirements tests.
+ - env: LIBRARY_CHECK=true
before_install:
# Fetch the script to do the actual building/testing.
@@ -59,6 +62,10 @@ before_install:
if [[ "${RELEASE_BUILD}" == "LF" || "${RELEASE_BUILD}" == "CRLF" ]]; then
wget "https://raw.githubusercontent.com/boostorg/release-tools/develop/ci_boost_release.py" -O ../script.py
fi
+ - |
+ if [[ "${LIBRARY_CHECK}" == "true" ]]; then
+ wget "https://raw.githubusercontent.com/boostorg/release-tools/develop/ci_boost_library_check.py" -O ../script.py
+ fi
install: python "${TRAVIS_BUILD_DIR}/../script.py" install
before_script: python "${TRAVIS_BUILD_DIR}/../script.py" before_script