forked from boostorg/integer
Enabled multiple git fetch jobs while executing depinst in CI. Increased the number of jobs to 8.
This commit is contained in:
@ -203,6 +203,7 @@ matrix:
|
|||||||
env: TOOLSET=clang COMPILER=clang++ CXXSTD=03,11,14,1z
|
env: TOOLSET=clang COMPILER=clang++ CXXSTD=03,11,14,1z
|
||||||
|
|
||||||
install:
|
install:
|
||||||
|
- GIT_FETCH_JOBS=8
|
||||||
- cd ..
|
- cd ..
|
||||||
- git clone -b $TRAVIS_BRANCH --depth 1 https://github.com/boostorg/boost.git boost-root
|
- git clone -b $TRAVIS_BRANCH --depth 1 https://github.com/boostorg/boost.git boost-root
|
||||||
- cd boost-root
|
- cd boost-root
|
||||||
@ -211,9 +212,9 @@ install:
|
|||||||
- git submodule init tools/boost_install
|
- git submodule init tools/boost_install
|
||||||
- git submodule init libs/headers
|
- git submodule init libs/headers
|
||||||
- git submodule init libs/config
|
- git submodule init libs/config
|
||||||
- git submodule update --jobs 4
|
- git submodule update --jobs $GIT_FETCH_JOBS
|
||||||
- cp -r $TRAVIS_BUILD_DIR/* libs/integer
|
- cp -r $TRAVIS_BUILD_DIR/* libs/integer
|
||||||
- python tools/boostdep/depinst/depinst.py integer
|
- python tools/boostdep/depinst/depinst.py --git_args "--jobs $GIT_FETCH_JOBS" integer
|
||||||
- ./bootstrap.sh
|
- ./bootstrap.sh
|
||||||
- ./b2 headers
|
- ./b2 headers
|
||||||
|
|
||||||
|
@ -41,6 +41,7 @@ environment:
|
|||||||
|
|
||||||
|
|
||||||
install:
|
install:
|
||||||
|
- set GIT_FETCH_JOBS=8
|
||||||
- cd ..
|
- cd ..
|
||||||
- git clone -b %APPVEYOR_REPO_BRANCH% --depth 1 https://github.com/boostorg/boost.git boost-root
|
- git clone -b %APPVEYOR_REPO_BRANCH% --depth 1 https://github.com/boostorg/boost.git boost-root
|
||||||
- cd boost-root
|
- cd boost-root
|
||||||
@ -49,9 +50,9 @@ install:
|
|||||||
- git submodule init tools/boost_install
|
- git submodule init tools/boost_install
|
||||||
- git submodule init libs/headers
|
- git submodule init libs/headers
|
||||||
- git submodule init libs/config
|
- 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\integer
|
- xcopy /s /e /q %APPVEYOR_BUILD_FOLDER% libs\integer
|
||||||
- python tools/boostdep/depinst/depinst.py integer
|
- python tools/boostdep/depinst/depinst.py --git_args "--jobs %GIT_FETCH_JOBS%" integer
|
||||||
- bootstrap
|
- bootstrap
|
||||||
- b2 headers
|
- b2 headers
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user