mirror of
https://github.com/boostorg/boost.git
synced 2025-04-05 21:45:00 +00:00
Add library requirements testing to Travis-CI.
This commit is contained in:
parent
7ef301f738
commit
338ccef415
1 changed files with 7 additions and 0 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue