diff --git a/.appveyor.yml b/.appveyor.yml index db118a5e8..321899b47 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -81,7 +81,9 @@ before_build: - cd c:\projects\boost # List all (recursive) dependencies explicitly to control any new additions - git submodule --quiet update --init tools/build + - git submodule --quiet update --init tools/boost_install - git submodule --quiet update --init tools/boostdep + - git submodule --quiet update --init libs/headers ## Direct - git submodule --quiet update --init libs/algorithm - git submodule --quiet update --init libs/array diff --git a/.circleci/config.yml b/.circleci/config.yml index a1378d79c..1943dd67a 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -306,9 +306,11 @@ jobs: command: | git clone -b master --depth 1 https://github.com/boostorg/boost.git cd boost - git submodule update --init tools/build - git submodule update --init libs/config - git submodule update --init tools/boostdep + git submodule --quiet update --init tools/build + git submodule --quiet update --init tools/boost_install + git submodule --quiet update --init tools/boostdep + git submodule --quiet update --init libs/headers + git submodule --quiet update --init libs/config rm -rf libs/gil && mkdir -p libs/gil mv -t libs/gil/ ../Jamfile ../example ../include ../io ../numeric ../test ../toolbox python tools/boostdep/depinst/depinst.py gil diff --git a/.travis.yml b/.travis.yml index 77bd42381..25d8647bf 100644 --- a/.travis.yml +++ b/.travis.yml @@ -194,7 +194,9 @@ install: - cd boost-root # List all (recursive) dependencies explicitly to control any new additions - git submodule --quiet update --init tools/build + - git submodule --quiet update --init tools/boost_install - git submodule --quiet update --init tools/boostdep + - git submodule --quiet update --init libs/headers ## Direct - git submodule --quiet update --init libs/algorithm - git submodule --quiet update --init libs/bind