Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .drone/drone.bat
Original file line number Diff line number Diff line change
Expand Up @@ -43,20 +43,20 @@ echo using zlib : : : ^<warnings^>off ^; >> !BOOST_ROOT!\project-config.jam
REM Customizations
cd
pushd !BOOST_ROOT!\libs
git clone https://github.com/cppalliance/rts -b !BOOST_BRANCH! --depth 1
git clone https://github.com/cppalliance/capy -b !BOOST_BRANCH! --depth 1
popd
pushd !BOOST_ROOT!\libs
git clone https://github.com/cppalliance/buffers -b !BOOST_BRANCH! --depth 1
popd
pushd !BOOST_ROOT!\libs
git clone https://github.com/cppalliance/http_proto -b !BOOST_BRANCH! --depth 1
git clone https://github.com/cppalliance/http -b !BOOST_BRANCH! --depth 1
popd

pushd !BOOST_ROOT!
python tools/boostdep/depinst/depinst.py rts
python tools/boostdep/depinst/depinst.py capy
python tools/boostdep/depinst/depinst.py buffers
python tools/boostdep/depinst/depinst.py http_proto
python tools/boostdep/depinst/depinst.py ws_proto
python tools/boostdep/depinst/depinst.py http
python tools/boostdep/depinst/depinst.py websocket
popd

echo '==================================> COMPILE'
Expand Down
20 changes: 10 additions & 10 deletions .drone/drone.sh
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,9 @@ common_install () {

. ./ci/common_install.sh

if [ ! -d "$BOOST_ROOT/libs/rts" ]; then
if [ ! -d "$BOOST_ROOT/libs/capy" ]; then
pushd $BOOST_ROOT/libs
git clone https://github.com/cppalliance/rts -b $BOOST_BRANCH --depth 1
git clone https://github.com/cppalliance/capy -b $BOOST_BRANCH --depth 1
popd
fi

Expand All @@ -47,16 +47,16 @@ common_install () {
popd
fi

if [ ! -d "$BOOST_ROOT/libs/http_proto" ]; then
if [ ! -d "$BOOST_ROOT/libs/http" ]; then
pushd $BOOST_ROOT/libs
git clone https://github.com/cppalliance/http_proto -b $BOOST_BRANCH --depth 1
git clone https://github.com/cppalliance/http -b $BOOST_BRANCH --depth 1
popd
fi

pushd $BOOST_ROOT
$pythonexecutable tools/boostdep/depinst/depinst.py buffers
$pythonexecutable tools/boostdep/depinst/depinst.py http_proto
$pythonexecutable tools/boostdep/depinst/depinst.py ws_proto
$pythonexecutable tools/boostdep/depinst/depinst.py http
$pythonexecutable tools/boostdep/depinst/depinst.py websocket
popd
}

Expand Down Expand Up @@ -133,9 +133,9 @@ cp -r $DRONE_BUILD_DIR/* libs/$SELF
git submodule update --init --recursive

# Customizations
if [ ! -d "$BOOST_ROOT/libs/rts" ]; then
if [ ! -d "$BOOST_ROOT/libs/capy" ]; then
pushd $BOOST_ROOT/libs
git clone https://github.com/cppalliance/rts -b $BOOST_BRANCH --depth 1
git clone https://github.com/cppalliance/capy -b $BOOST_BRANCH --depth 1
popd
fi

Expand All @@ -145,9 +145,9 @@ if [ ! -d "$BOOST_ROOT/libs/buffers" ]; then
popd
fi

if [ ! -d "$BOOST_ROOT/libs/http_proto" ]; then
if [ ! -d "$BOOST_ROOT/libs/http" ]; then
pushd $BOOST_ROOT/libs
git clone https://github.com/cppalliance/http_proto -b $BOOST_BRANCH --depth 1
git clone https://github.com/cppalliance/http -b $BOOST_BRANCH --depth 1
popd
fi

Expand Down
Loading
Loading