From bc32fe48eea9f5230930ba73a111d3654f42f91c Mon Sep 17 00:00:00 2001 From: "James E. King III" Date: Wed, 19 Dec 2018 14:58:47 -0500 Subject: [PATCH] update install prerequisites --- ci/appveyor/install.bat | 3 ++- ci/travis/install.sh | 4 ++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/ci/appveyor/install.bat b/ci/appveyor/install.bat index e29463d..6de7dea 100644 --- a/ci/appveyor/install.bat +++ b/ci/appveyor/install.bat @@ -2,9 +2,10 @@ cd .. || EXIT /B git clone -b %APPVEYOR_REPO_BRANCH% --depth 1 https://github.com/boostorg/boost.git boost-root || EXIT /B cd boost-root || EXIT /B +git submodule update -q --init libs/headers || EXIT /B +git submodule update -q --init tools/boost_install || EXIT /B git submodule update -q --init tools/boostdep || EXIT /B git submodule update -q --init tools/build || EXIT /B -git submodule update -q --init tools/inspect || EXIT /B xcopy /s /e /q %APPVEYOR_BUILD_FOLDER% libs\%SELF% || EXIT /B python tools/boostdep/depinst/depinst.py --include benchmark --include example --include examples --include tools %DEPINST% %SELF:\=/% || EXIT /B cmd /c bootstrap || EXIT /B diff --git a/ci/travis/install.sh b/ci/travis/install.sh index 64d7bf0..f4ba9f5 100755 --- a/ci/travis/install.sh +++ b/ci/travis/install.sh @@ -22,13 +22,13 @@ if [ "$SELF" == "interval" ]; then fi git clone -b $TRAVIS_BRANCH --depth 1 https://github.com/boostorg/boost.git boost-root cd boost-root +git submodule update -q --init libs/headers +git submodule update -q --init tools/boost_install git submodule update -q --init tools/boostdep git submodule update -q --init tools/build -git submodule update -q --init tools/inspect cp -r $TRAVIS_BUILD_DIR/* libs/$SELF export BOOST_ROOT="`pwd`" export PATH="`pwd`":$PATH python tools/boostdep/depinst/depinst.py --include benchmark --include example --include examples --include tools $DEPINST $SELF ./bootstrap.sh ./b2 headers -