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