mirror of
https://github.com/XRPLF/rippled.git
synced 2025-11-16 09:05:50 +00:00
* Remove all builds except cmake gcc & clang debug. * Time some dependency and build operations, using a custom format to avoid interfering with other timers. * Use Travis's "trusty" infrastructure. * Install more dependencies via apt. * Update boost version to 1.65.1. * Do not run unit tests under gdb - several security features prevent it from running correctly. * Run test job with two processes.
33 lines
851 B
Bash
33 lines
851 B
Bash
#!/bin/sh
|
|
# Assumptions:
|
|
# 1) BOOST_ROOT and BOOST_URL are already defined,
|
|
# and contain valid values.
|
|
# 2) The last namepart of BOOST_ROOT matches the
|
|
# folder name internal to boost's .tar.gz
|
|
# When testing you can force a boost build by clearing travis caches:
|
|
# https://travis-ci.org/ripple/rippled/caches
|
|
set -e
|
|
|
|
if [ -x /usr/bin/time ] ; then
|
|
: ${TIME:="Duration: %E"}
|
|
export TIME
|
|
time=/usr/bin/time
|
|
else
|
|
time=
|
|
fi
|
|
|
|
if [ ! -d "$BOOST_ROOT/lib" ]
|
|
then
|
|
wget $BOOST_URL -O /tmp/boost.tar.gz
|
|
cd `dirname $BOOST_ROOT`
|
|
rm -fr ${BOOST_ROOT}
|
|
tar xzf /tmp/boost.tar.gz
|
|
cd $BOOST_ROOT && \
|
|
$time ./bootstrap.sh --prefix=$BOOST_ROOT && \
|
|
$time ./b2 -d1 define=_GLIBCXX_USE_CXX11_ABI=0 -j$((2*${NUM_PROCESSORS:-2})) &&\
|
|
$time ./b2 -d0 define=_GLIBCXX_USE_CXX11_ABI=0 install
|
|
else
|
|
echo "Using cached boost at $BOOST_ROOT"
|
|
fi
|
|
|