2021-12-19 09:33:39 +01:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
#
|
2023-08-16 19:27:31 +02:00
|
|
|
# Copyright (c) 2018-2020 The Bitcoin Core developers
|
2021-12-19 09:33:39 +01:00
|
|
|
# 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
|
|
|
|
|
2019-10-14 23:00:49 +02:00
|
|
|
# Make sure default datadir does not exist and is never read by creating a dummy file
|
2020-11-09 15:30:46 +01:00
|
|
|
if [ "$CI_OS_NAME" == "macos" ]; then
|
2019-10-14 23:00:49 +02:00
|
|
|
echo > $HOME/Library/Application\ Support/DashCore
|
|
|
|
else
|
|
|
|
DOCKER_EXEC echo \> \$HOME/.dashcore
|
|
|
|
fi
|
2021-12-19 09:33:39 +01:00
|
|
|
|
2019-12-03 17:00:58 +01:00
|
|
|
DOCKER_EXEC mkdir -p ${DEPENDS_DIR}/SDKs ${DEPENDS_DIR}/sdk-sources
|
2021-12-19 09:33:39 +01:00
|
|
|
|
2019-10-17 16:46:08 +02:00
|
|
|
if [ -n "$XCODE_VERSION" ] && [ ! -f "$OSX_SDK_PATH" ]; then
|
|
|
|
DOCKER_EXEC curl --location --fail "${SDK_URL}/${OSX_SDK_BASENAME}" -o "$OSX_SDK_PATH"
|
|
|
|
fi
|
|
|
|
if [ -n "$XCODE_VERSION" ] && [ -f "$OSX_SDK_PATH" ]; then
|
2019-12-03 17:00:58 +01:00
|
|
|
DOCKER_EXEC tar -C "${DEPENDS_DIR}/SDKs" -xf "$OSX_SDK_PATH"
|
2019-10-17 16:46:08 +02:00
|
|
|
fi
|
|
|
|
if [[ $HOST = *-mingw32 ]]; then
|
|
|
|
DOCKER_EXEC update-alternatives --set $HOST-g++ \$\(which $HOST-g++-posix\)
|
|
|
|
fi
|
|
|
|
if [ -z "$NO_DEPENDS" ]; then
|
2020-01-16 21:44:49 +01:00
|
|
|
if [[ $DOCKER_NAME_TAG == centos* ]]; then
|
2020-03-03 07:58:57 +01:00
|
|
|
# CentOS has problems building the depends if the config shell is not explicitly set
|
2020-01-16 21:44:49 +01:00
|
|
|
# (i.e. for libevent a Makefile with an empty SHELL variable is generated, leading to
|
|
|
|
# an error as the first command is executed)
|
2020-11-23 21:02:11 +01:00
|
|
|
SHELL_OPTS="LC_ALL=en_US.UTF-8 CONFIG_SHELL=/bin/bash"
|
2020-01-16 21:44:49 +01:00
|
|
|
else
|
|
|
|
SHELL_OPTS="CONFIG_SHELL="
|
|
|
|
fi
|
|
|
|
DOCKER_EXEC $SHELL_OPTS make $MAKEJOBS -C depends HOST=$HOST $DEP_OPTS
|
2021-12-19 09:33:39 +01:00
|
|
|
fi
|
2023-08-11 08:17:20 +02:00
|
|
|
if [ -n "$PREVIOUS_RELEASES_TO_DOWNLOAD" ]; then
|
2020-08-31 16:18:01 +02:00
|
|
|
DOCKER_EXEC test/get_previous_releases.py -b -t "$PREVIOUS_RELEASES_DIR" "${PREVIOUS_RELEASES_TO_DOWNLOAD}"
|
2020-02-12 15:19:50 +01:00
|
|
|
fi
|