2
0
mirror of https://github.com/boostorg/sync.git synced 2026-01-19 04:42:12 +00:00

Enabled multiple git fetch jobs while executing depinst in CI. Increased the number of jobs to 8.

This commit is contained in:
Andrey Semashev
2019-01-15 13:58:29 +03:00
parent 7df0b2f16c
commit 9350bd93af
2 changed files with 6 additions and 4 deletions

View File

@@ -253,6 +253,7 @@ matrix:
install:
- GIT_FETCH_JOBS=8
- cd ..
- git clone -b $TRAVIS_BRANCH --depth 1 https://github.com/boostorg/boost.git boost-root
- cd boost-root
@@ -261,9 +262,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/sync
- python tools/boostdep/depinst/depinst.py sync
- python tools/boostdep/depinst/depinst.py --git_args "--jobs $GIT_FETCH_JOBS" sync
- ./bootstrap.sh
- ./b2 headers

View File

@@ -83,6 +83,7 @@ environment:
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015
install:
- set GIT_FETCH_JOBS=8
- cd ..
- git clone -b %APPVEYOR_REPO_BRANCH% https://github.com/boostorg/boost.git boost-root
- cd boost-root
@@ -91,9 +92,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%
- xcopy /s /e /q %APPVEYOR_BUILD_FOLDER% libs\sync
- python tools/boostdep/depinst/depinst.py sync
- python tools/boostdep/depinst/depinst.py --git_args "--jobs %GIT_FETCH_JOBS%" sync
- cmd /c bootstrap
- b2 headers