mirror of
https://github.com/boostorg/iterator.git
synced 2025-07-30 04:47:20 +02:00
Enabled multiple git fetch jobs while executing depinst in CI. Increased the number of jobs to 8.
This commit is contained in:
@ -67,6 +67,7 @@ matrix:
|
|||||||
env: TOOLSET=clang CXXSTD=03,11,14,1z
|
env: TOOLSET=clang CXXSTD=03,11,14,1z
|
||||||
|
|
||||||
install:
|
install:
|
||||||
|
- GIT_FETCH_JOBS=8
|
||||||
- BOOST_BRANCH=develop
|
- BOOST_BRANCH=develop
|
||||||
- if [ "$TRAVIS_BRANCH" = "master" ]; then BOOST_BRANCH=master; fi
|
- if [ "$TRAVIS_BRANCH" = "master" ]; then BOOST_BRANCH=master; fi
|
||||||
- cd ..
|
- cd ..
|
||||||
@ -77,9 +78,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/iterator
|
- cp -r $TRAVIS_BUILD_DIR/* libs/iterator
|
||||||
- python tools/boostdep/depinst/depinst.py iterator
|
- python tools/boostdep/depinst/depinst.py --git_args "--jobs $GIT_FETCH_JOBS" iterator
|
||||||
- ./bootstrap.sh
|
- ./bootstrap.sh
|
||||||
- ./b2 headers
|
- ./b2 headers
|
||||||
|
|
||||||
|
@ -23,6 +23,7 @@ environment:
|
|||||||
CXXSTD: 14,17
|
CXXSTD: 14,17
|
||||||
|
|
||||||
install:
|
install:
|
||||||
|
- set GIT_FETCH_JOBS=8
|
||||||
- set BOOST_BRANCH=develop
|
- set BOOST_BRANCH=develop
|
||||||
- if "%APPVEYOR_REPO_BRANCH%" == "master" set BOOST_BRANCH=master
|
- if "%APPVEYOR_REPO_BRANCH%" == "master" set BOOST_BRANCH=master
|
||||||
- cd ..
|
- cd ..
|
||||||
@ -33,9 +34,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\iterator
|
- xcopy /s /e /q %APPVEYOR_BUILD_FOLDER% libs\iterator
|
||||||
- python tools/boostdep/depinst/depinst.py iterator
|
- python tools/boostdep/depinst/depinst.py --git_args "--jobs %GIT_FETCH_JOBS%" iterator
|
||||||
- cmd /c bootstrap
|
- cmd /c bootstrap
|
||||||
- b2 -d0 headers
|
- b2 -d0 headers
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user