2021-12-13 07:54:31 +01:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
#
|
|
|
|
# Copyright (c) 2019 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
|
|
|
|
|
2019-12-04 19:22:23 +01:00
|
|
|
# The root dir.
|
|
|
|
# The ci system copies this folder.
|
|
|
|
# This is where the build is done (depends and dist).
|
|
|
|
BASE_ROOT_DIR=$( cd "$( dirname "${BASH_SOURCE[0]}" )"/../../ >/dev/null 2>&1 && pwd )
|
|
|
|
export BASE_ROOT_DIR
|
|
|
|
|
2019-09-24 22:22:24 +02:00
|
|
|
echo "Setting specific values in env"
|
|
|
|
if [ -n "${FILE_ENV}" ]; then
|
|
|
|
set -o errexit;
|
|
|
|
# shellcheck disable=SC1090
|
|
|
|
source "${FILE_ENV}"
|
|
|
|
fi
|
2021-12-13 07:54:31 +01:00
|
|
|
|
2022-04-07 18:03:41 +02:00
|
|
|
export BUILD_TARGET=${BUILD_TARGET:-linux64}
|
|
|
|
export PULL_REQUEST=${PULL_REQUEST:-false}
|
|
|
|
export JOB_NUMBER=${JOB_NUMBER:-1}
|
|
|
|
|
2019-09-24 22:22:24 +02:00
|
|
|
echo "Fallback to default values in env (if not yet set)"
|
2019-08-27 21:44:57 +02:00
|
|
|
# The number of parallel jobs to pass down to make and test_runner.py
|
2022-04-07 18:03:41 +02:00
|
|
|
MAKEJOBS="-j$(nproc)"
|
|
|
|
export MAKEJOBS
|
2019-08-27 21:44:57 +02:00
|
|
|
# A folder for the ci system to put temporary files (ccache, datadirs for tests, ...)
|
2019-12-03 17:00:58 +01:00
|
|
|
# This folder only exists on the ci host.
|
2019-08-27 21:44:57 +02:00
|
|
|
export BASE_SCRATCH_DIR=${BASE_SCRATCH_DIR:-$BASE_ROOT_DIR/ci/scratch/}
|
2022-06-22 19:17:47 +02:00
|
|
|
# What host to compile for. See also ./depends/README.md
|
|
|
|
# Tests that need cross-compilation export the appropriate HOST.
|
|
|
|
# Tests that run natively guess the host
|
|
|
|
export HOST=${HOST:-$("$BASE_ROOT_DIR/depends/config.guess")}
|
2019-09-30 23:26:22 +02:00
|
|
|
# Whether to prefer BusyBox over GNU utilities
|
|
|
|
export USE_BUSY_BOX=${USE_BUSY_BOX:-false}
|
2021-12-13 07:54:31 +01:00
|
|
|
export RUN_UNIT_TESTS=${RUN_UNIT_TESTS:-true}
|
2022-03-25 09:24:16 +01:00
|
|
|
export RUN_INTEGRATION_TESTS=${RUN_INTEGRATION_TESTS:-true}
|
2021-12-13 07:54:31 +01:00
|
|
|
export RUN_FUZZ_TESTS=${RUN_FUZZ_TESTS:-false}
|
|
|
|
export DOCKER_NAME_TAG=${DOCKER_NAME_TAG:-ubuntu:18.04}
|
2019-09-24 22:22:24 +02:00
|
|
|
# Randomize test order.
|
|
|
|
# See https://www.boost.org/doc/libs/1_71_0/libs/test/doc/html/boost_test/utf_reference/rt_param_reference/random.html
|
|
|
|
export BOOST_TEST_RANDOM=${BOOST_TEST_RANDOM:-1}
|
2022-04-07 18:03:41 +02:00
|
|
|
export HOST_CACHE_DIR=${HOST_CACHE_DIR:-$BASE_ROOT_DIR/ci-cache-$BUILD_TARGET}
|
|
|
|
export CACHE_DIR=${CACHE_DIR:-$HOST_CACHE_DIR}
|
2021-12-13 07:54:31 +01:00
|
|
|
export CCACHE_SIZE=${CCACHE_SIZE:-100M}
|
|
|
|
export CCACHE_TEMPDIR=${CCACHE_TEMPDIR:-/tmp/.ccache-temp}
|
|
|
|
export CCACHE_COMPRESS=${CCACHE_COMPRESS:-1}
|
2019-12-03 17:00:58 +01:00
|
|
|
# The cache dir.
|
|
|
|
# This folder exists on the ci host and ci guest. Changes are propagated back and forth.
|
2022-04-07 18:03:41 +02:00
|
|
|
export CCACHE_DIR=${CCACHE_DIR:-$CACHE_DIR/ccache}
|
2019-12-03 17:00:58 +01:00
|
|
|
# The depends dir.
|
|
|
|
# This folder exists on the ci host and ci guest. Changes are propagated back and forth.
|
|
|
|
export DEPENDS_DIR=${DEPENDS_DIR:-$BASE_ROOT_DIR/depends}
|
|
|
|
# Folder where the build is done (bin and lib).
|
|
|
|
export BASE_OUTDIR=${BASE_OUTDIR:-$BASE_SCRATCH_DIR/out/$HOST}
|
2021-12-13 07:54:31 +01:00
|
|
|
export SDK_URL=${SDK_URL:-https://bitcoincore.org/depends-sources/sdks}
|
|
|
|
export WINEDEBUG=${WINEDEBUG:-fixme-all}
|
2019-11-20 22:41:45 +01:00
|
|
|
export DOCKER_PACKAGES=${DOCKER_PACKAGES:-build-essential libtool autotools-dev automake pkg-config bsdmainutils curl ca-certificates ccache python3 rsync git}
|
2021-12-13 07:54:31 +01:00
|
|
|
export GOAL=${GOAL:-install}
|
2019-12-03 17:00:58 +01:00
|
|
|
export DIR_QA_ASSETS=${DIR_QA_ASSETS:-${BASE_SCRATCH_DIR}/qa-assets}
|
2021-12-13 07:54:31 +01:00
|
|
|
export PATH=${BASE_ROOT_DIR}/ci/retry:$PATH
|
2020-04-29 17:14:10 +02:00
|
|
|
export CI_RETRY_EXE=${CI_RETRY_EXE:-"retry --"}
|
2022-04-07 18:03:41 +02:00
|
|
|
# Dash's Docker-specifics
|
|
|
|
export BUILDER_IMAGE_NAME="dash-builder-$BUILD_TARGET-$JOB_NUMBER"
|
|
|
|
export DOCKER_RUN_VOLUME_ARGS="-v $BASE_ROOT_DIR:$BASE_ROOT_DIR -v $HOST_CACHE_DIR:$CACHE_DIR"
|
|
|
|
export DOCKER_RUN_ENV_ARGS="-e BASE_ROOT_DIR=$BASE_ROOT_DIR -e CACHE_DIR=$CACHE_DIR -e PULL_REQUEST=$PULL_REQUEST -e COMMIT_RANGE=$COMMIT_RANGE -e JOB_NUMBER=$JOB_NUMBER -e BUILD_TARGET=$BUILD_TARGET"
|
|
|
|
export DOCKER_RUN_ARGS="$DOCKER_RUN_VOLUME_ARGS $DOCKER_RUN_ENV_ARGS"
|
|
|
|
export DOCKER_RUN_IN_BUILDER="docker run -t --rm -w $BASE_ROOT_DIR $DOCKER_RUN_ARGS $BUILDER_IMAGE_NAME"
|