|
|
|
#!/usr/bin/env bash
|
|
|
|
#
|
|
|
|
# Copyright (c) 2018-2020 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
|
|
|
|
|
|
|
|
# Make sure default datadir does not exist and is never read by creating a dummy file
|
|
|
|
if [ "$TRAVIS_OS_NAME" == "osx" ]; then
|
|
|
|
echo > $HOME/Library/Application\ Support/Bitcoin
|
|
|
|
else
|
|
|
|
DOCKER_EXEC echo \> \$HOME/.bitcoin
|
|
|
|
fi
|
|
|
|
|
|
|
|
DOCKER_EXEC mkdir -p ${DEPENDS_DIR}/SDKs ${DEPENDS_DIR}/sdk-sources
|
|
|
|
|
|
|
|
if [ -n "$OSX_SDK" ] && [ ! -f ${DEPENDS_DIR}/sdk-sources/MacOSX${OSX_SDK}.sdk.tar.gz ]; then
|
|
|
|
curl --location --fail $SDK_URL/MacOSX${OSX_SDK}.sdk.tar.gz -o ${DEPENDS_DIR}/sdk-sources/MacOSX${OSX_SDK}.sdk.tar.gz
|
|
|
|
fi
|
|
|
|
if [ -n "$OSX_SDK" ] && [ -f ${DEPENDS_DIR}/sdk-sources/MacOSX${OSX_SDK}.sdk.tar.gz ]; then
|
|
|
|
DOCKER_EXEC tar -C ${DEPENDS_DIR}/SDKs -xf ${DEPENDS_DIR}/sdk-sources/MacOSX${OSX_SDK}.sdk.tar.gz
|
|
|
|
fi
|
|
|
|
if [[ $HOST = *-mingw32 ]]; then
|
|
|
|
DOCKER_EXEC update-alternatives --set $HOST-g++ \$\(which $HOST-g++-posix\)
|
|
|
|
fi
|
|
|
|
if [ -z "$NO_DEPENDS" ]; then
|
|
|
|
if [[ $DOCKER_NAME_TAG == centos* ]]; then
|
|
|
|
# CentOS has problems building the depends if the config shell is not explicitly set
|
|
|
|
# (i.e. for libevent a Makefile with an empty SHELL variable is generated, leading to
|
|
|
|
# an error as the first command is executed)
|
|
|
|
SHELL_OPTS="CONFIG_SHELL=/bin/bash"
|
|
|
|
else
|
|
|
|
SHELL_OPTS="CONFIG_SHELL="
|
|
|
|
fi
|
|
|
|
# Temporary workaround for https://github.com/bitcoin/bitcoin/issues/16368
|
|
|
|
python3 -c 'import time; [print(".") or time.sleep(500) for _ in range(4)]' &
|
|
|
|
( DOCKER_EXEC $SHELL_OPTS make $MAKEJOBS -C depends HOST=$HOST $DEP_OPTS ) &> /dev/null
|
|
|
|
fi
|
|
|
|
if [ -n "$PREVIOUS_RELEASES_TO_DOWNLOAD" ]; then
|
|
|
|
BEGIN_FOLD previous-versions
|
|
|
|
DOCKER_EXEC contrib/devtools/previous_release.sh -b -t "$PREVIOUS_RELEASES_DIR" "${PREVIOUS_RELEASES_TO_DOWNLOAD}"
|
|
|
|
END_FOLD
|
|
|
|
fi
|