mirror of https://github.com/bitcoin/bitcoin
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
733 B
28 lines
733 B
#!/usr/bin/env bash
|
|
#
|
|
# Copyright (c) 2018 The Bitcoin Core developers
|
|
# Distributed under the MIT software license, see the accompanying
|
|
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
export LC_ALL=C.UTF-8
|
|
|
|
PATH=$(echo $PATH | tr ':' "\n" | sed '/\/opt\/python/d' | tr "\n" ":" | sed "s|::|:|g")
|
|
# Add llvm-symbolizer directory to PATH. Needed to get symbolized stack traces from the sanitizers.
|
|
PATH=$PATH:/usr/lib/llvm-6.0/bin/
|
|
export PATH
|
|
|
|
BEGIN_FOLD () {
|
|
echo ""
|
|
CURRENT_FOLD_NAME=$1
|
|
echo "travis_fold:start:${CURRENT_FOLD_NAME}"
|
|
}
|
|
|
|
END_FOLD () {
|
|
RET=$?
|
|
echo "travis_fold:end:${CURRENT_FOLD_NAME}"
|
|
if [ $RET != 0 ]; then
|
|
echo "${CURRENT_FOLD_NAME} failed with status code ${RET}"
|
|
fi
|
|
}
|
|
|