From ce64b1384600ca1aaffc8d9a79fd0082553c8512 Mon Sep 17 00:00:00 2001 From: Andrey Semashev Date: Tue, 18 Dec 2018 22:14:06 +0300 Subject: [PATCH] Added tools/boost_install and libs/headers manual checkout to CI jobs. --- .travis.yml | 25 ++++++++++++++----------- appveyor.yml | 25 ++++++++++++++----------- 2 files changed, 28 insertions(+), 22 deletions(-) diff --git a/.travis.yml b/.travis.yml index 0fd5630..74a1d2a 100644 --- a/.travis.yml +++ b/.travis.yml @@ -219,17 +219,20 @@ install: - cd .. - git clone -b $BOOST_BRANCH --depth 1 https://github.com/boostorg/boost.git boost-root - cd boost-root - - git submodule update --init tools/build - - git submodule update --init libs/assert - - git submodule update --init libs/config - - git submodule update --init libs/core - - git submodule update --init libs/preprocessor - - git submodule update --init libs/static_assert - - git submodule update --init libs/throw_exception - - git submodule update --init libs/type_traits - - git submodule update --init libs/container_hash - - git submodule update --init libs/integer - - git submodule update --init libs/detail + - git submodule init tools/build + - git submodule init tools/boost_install + - git submodule init libs/headers + - git submodule init libs/assert + - git submodule init libs/config + - git submodule init libs/core + - git submodule init libs/preprocessor + - git submodule init libs/static_assert + - git submodule init libs/throw_exception + - git submodule init libs/type_traits + - git submodule init libs/container_hash + - git submodule init libs/integer + - git submodule init libs/detail + - git submodule update --jobs 4 - cp -r $TRAVIS_BUILD_DIR/* libs/utility - ./bootstrap.sh - ./b2 headers diff --git a/appveyor.yml b/appveyor.yml index b63ff9f..5bf3fcc 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -28,17 +28,20 @@ install: - cd .. - git clone -b %BOOST_BRANCH% --depth 1 https://github.com/boostorg/boost.git boost-root - cd boost-root - - git submodule update --init tools/build - - git submodule update --init libs/assert - - git submodule update --init libs/config - - git submodule update --init libs/core - - git submodule update --init libs/preprocessor - - git submodule update --init libs/static_assert - - git submodule update --init libs/throw_exception - - git submodule update --init libs/type_traits - - git submodule update --init libs/container_hash - - git submodule update --init libs/integer - - git submodule update --init libs/detail + - git submodule init tools/build + - git submodule init tools/boost_install + - git submodule init libs/headers + - git submodule init libs/assert + - git submodule init libs/config + - git submodule init libs/core + - git submodule init libs/preprocessor + - git submodule init libs/static_assert + - git submodule init libs/throw_exception + - git submodule init libs/type_traits + - git submodule init libs/container_hash + - git submodule init libs/integer + - git submodule init libs/detail + - git submodule update --jobs 4 - xcopy /s /e /q %APPVEYOR_BUILD_FOLDER% libs\utility - cmd /c bootstrap - b2 -d0 headers