Files
boost_beast/tools/get-boost.sh
Damian Jarek df0e9336bf Cleanup CI:
close #1558

- Parallelize submodule clone.
- Do a shallow submodule clone.
- Move submodule update code to a script.
- Build with BOOST_BEAST_USE_STD_STRING_VIEW on msvc

Signed-off-by: Damian Jarek <damian.jarek93@gmail.com>
2019-04-15 08:17:42 -07:00

89 lines
1.7 KiB
Bash
Executable File

#! /bin/sh
set -e
build_dir=$2
branch="master"
if [ "$1" != "master" ]; then
branch="develop"
fi
git clone -b $branch --depth 1 https://github.com/boostorg/boost.git boost-root
cd boost-root
# Use a reasonably large depth to prevent intermittent update failures due to
# commits being on a submodule's master before the superproject is updated.
git submodule update --init --depth 20 --jobs 4 \
libs/array \
libs/headers \
tools/build \
tools/boost_install \
tools/boostdep \
libs/align \
libs/asio \
libs/assert \
libs/config \
libs/core \
libs/endian \
libs/filesystem \
libs/intrusive \
libs/locale \
libs/optional \
libs/smart_ptr \
libs/static_assert \
libs/system \
libs/throw_exception \
libs/type_traits \
libs/utility \
libs/winapi \
libs/algorithm \
libs/array \
libs/atomic \
libs/bind \
libs/chrono \
libs/concept_check \
libs/container \
libs/container_hash \
libs/context \
libs/conversion \
libs/coroutine \
libs/date_time \
libs/detail \
libs/exception \
libs/function \
libs/function_types \
libs/functional \
libs/fusion \
libs/integer \
libs/io \
libs/iterator \
libs/lambda \
libs/lexical_cast \
libs/logic \
libs/math \
libs/move \
libs/mp11 \
libs/mpl \
libs/numeric/conversion \
libs/pool \
libs/predef \
libs/preprocessor \
libs/random \
libs/range \
libs/ratio \
libs/rational \
libs/thread \
libs/tuple \
libs/type_index \
libs/typeof \
libs/unordered
echo Submodule update complete
echo "BUILD_DIR: $build_dir"
rm -rf libs/beast
mkdir libs/beast
cp -r $build_dir libs/