From 313bc2a36bb31b734df6320288a50577787bc155 Mon Sep 17 00:00:00 2001 From: Andrey Semashev Date: Tue, 15 Jan 2019 13:40:40 +0300 Subject: [PATCH] Enabled multiple git fetch jobs while executing depinst in CI. --- .travis.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 1f33363..fc68de4 100644 --- a/.travis.yml +++ b/.travis.yml @@ -250,6 +250,7 @@ matrix: env: TOOLSET=clang COMPILER=clang++ CXXSTD=03,11,14,1z install: + - GIT_FETCH_JOBS=8 - BOOST_BRANCH=develop - if [ "$TRAVIS_BRANCH" = "master" ]; then BOOST_BRANCH=master; fi - cd .. @@ -260,9 +261,9 @@ install: - git submodule init tools/boost_install - git submodule init libs/headers - git submodule init libs/config - - git submodule update --jobs 4 + - git submodule update --jobs $GIT_FETCH_JOBS - cp -r $TRAVIS_BUILD_DIR/* libs/detail - - python tools/boostdep/depinst/depinst.py detail + - python tools/boostdep/depinst/depinst.py --git_args "--jobs $GIT_FETCH_JOBS" detail - ./bootstrap.sh - ./b2 headers