mirror of
https://github.com/XRPLF/rippled.git
synced 2025-11-19 18:45:52 +00:00
* Run autobahn/valgrind tests when target branch in {master, develop}
* Add coveralls
* Show full stacktrace for usan (RIPD-1150)
* Manual launch of coverage (RIPD-1152)
* Use lldb on Darwin (RIPD-1152)
* Set defaults if not CI (RIPD-1152)
* Add autobahn result parser (RIPD-1147)
21 lines
558 B
Bash
Executable File
21 lines
558 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# Assumptions:
|
|
# 1) VALGRIND_ROOT is already defined, and contains a valid values
|
|
set -eu
|
|
if [ ! -d "$VALGRIND_ROOT/bin" ]
|
|
then
|
|
# These are specified in the addons/apt section of .travis.yml
|
|
# sudo apt-get install subversion automake autotools-dev libc6-dbg
|
|
export PATH=$PATH:$VALGRIND_ROOT/bin
|
|
svn co svn://svn.valgrind.org/valgrind/trunk valgrind-co
|
|
cd valgrind-co
|
|
./autogen.sh
|
|
./configure --prefix=$VALGRIND_ROOT
|
|
make
|
|
make install
|
|
# test it
|
|
valgrind ls -l
|
|
else
|
|
echo "Using cached valgrind at $VALGRIND_ROOT"
|
|
fi
|