This commit is contained in:
Hans Dembinski
2018-07-16 21:55:35 +02:00
parent 171f358b94
commit feb92c8ae8
2 changed files with 4 additions and 2 deletions

View File

@@ -64,12 +64,14 @@ matrix:
CMAKE_BUILD_TYPE=coverage
git:
depth: 1
depth: 10
# Install packages (pre-installed: pytest numpy)
install:
- pyenv versions
- pyenv global ${PYTHON_VERSION}
- python build/get_python_include.py
- python build/get_python_library.py
- source build/travis_install_boost.sh

View File

@@ -15,6 +15,6 @@ if [[ -z "$(ls -A ${BOOST_DIR})" ]]; then
{ wget --quiet -O - ${BOOST_URL} | tar --strip-components=1 -xz -C ${BOOST_DIR}; } || exit 1
(cd ${BOOST_DIR} && ./bootstrap.sh > /dev/null && \
sed -i "${BOOSTRAP_PATCH_REGEX}" project-config.jam && \
./b2 install --prefix=${BOOST_DIR} --with-serialization --with-iostreams --with-python | grep -v -e common\.copy -e common\.mkdir)
./b2 install --prefix=${BOOST_DIR} --with-serialization --with-iostreams --with-python | grep -v -e common\.copy -e common\.mkdir) || exit 1
fi
ls ${BOOST_DIR}/lib | grep libboost