2018-07-12 15:28:59 +02:00
|
|
|
#!/usr/bin/env bash
|
2020-07-29 15:24:36 +02:00
|
|
|
#
|
2018-07-12 15:28:59 +02:00
|
|
|
# This script is meant to be sourced into the actual build script. It contains the build matrix and will set all
|
|
|
|
# necessary environment variables for the request build target
|
|
|
|
|
2018-08-27 15:33:59 +02:00
|
|
|
export LC_ALL=C.UTF-8
|
2020-07-29 15:24:36 +02:00
|
|
|
|
2018-07-12 15:28:59 +02:00
|
|
|
export BUILD_TARGET=${BUILD_TARGET:-linux64}
|
|
|
|
export PULL_REQUEST=${PULL_REQUEST:-false}
|
|
|
|
export JOB_NUMBER=${JOB_NUMBER:-1}
|
|
|
|
|
|
|
|
export BUILDER_IMAGE_NAME="dash-builder-$BUILD_TARGET-$JOB_NUMBER"
|
|
|
|
|
|
|
|
export HOST_SRC_DIR=${HOST_SRC_DIR:-$(pwd)}
|
|
|
|
export HOST_CACHE_DIR=${HOST_CACHE_DIR:-$(pwd)/ci-cache-$BUILD_TARGET}
|
|
|
|
|
|
|
|
export SRC_DIR=${SRC_DIR:-$HOST_SRC_DIR}
|
|
|
|
export BUILD_DIR=$SRC_DIR
|
|
|
|
export OUT_DIR=$BUILD_DIR/out
|
|
|
|
|
|
|
|
export CACHE_DIR=${CACHE_DIR:-$HOST_CACHE_DIR}
|
|
|
|
export CCACHE_DIR=$CACHE_DIR/ccache
|
|
|
|
|
|
|
|
export DOCKER_RUN_VOLUME_ARGS="-v $HOST_SRC_DIR:$SRC_DIR -v $HOST_CACHE_DIR:$CACHE_DIR"
|
2019-10-01 16:16:26 +02:00
|
|
|
export DOCKER_RUN_ENV_ARGS="-e SRC_DIR=$SRC_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"
|
2018-07-12 15:28:59 +02:00
|
|
|
export DOCKER_RUN_ARGS="$DOCKER_RUN_VOLUME_ARGS $DOCKER_RUN_ENV_ARGS"
|
|
|
|
export DOCKER_RUN_IN_BUILDER="docker run -t --rm -w $SRC_DIR $DOCKER_RUN_ARGS $BUILDER_IMAGE_NAME"
|
|
|
|
|
|
|
|
# Default values for targets
|
|
|
|
export GOAL="install"
|
|
|
|
export SDK_URL=${SDK_URL:-https://bitcoincore.org/depends-sources/sdks}
|
2018-08-27 11:06:54 +02:00
|
|
|
MAKEJOBS="-j$(nproc)"
|
|
|
|
export MAKEJOBS
|
2018-07-12 15:28:59 +02:00
|
|
|
|
2018-08-27 11:06:54 +02:00
|
|
|
export RUN_UNITTESTS=true
|
|
|
|
export RUN_INTEGRATIONTESTS=true
|
2019-05-22 23:21:21 +02:00
|
|
|
|
2018-07-12 15:28:59 +02:00
|
|
|
if [ "$BUILD_TARGET" = "arm-linux" ]; then
|
|
|
|
export HOST=arm-linux-gnueabihf
|
|
|
|
export CHECK_DOC=1
|
2020-01-02 18:36:29 +01:00
|
|
|
# -Wno-psabi is to disable ABI warnings: "note: parameter passing for argument of type ... changed in GCC 7.1"
|
|
|
|
# This could be removed once the ABI change warning does not show up by default
|
2021-11-30 12:13:18 +01:00
|
|
|
export BITCOIN_CONFIG="--enable-reduce-exports --enable-suppress-external-warnings --enable-werror CXXFLAGS=-Wno-psabi"
|
2018-08-27 11:06:54 +02:00
|
|
|
export RUN_UNITTESTS=false
|
|
|
|
export RUN_INTEGRATIONTESTS=false
|
2018-07-12 15:28:59 +02:00
|
|
|
elif [ "$BUILD_TARGET" = "win64" ]; then
|
|
|
|
export HOST=x86_64-w64-mingw32
|
|
|
|
export DPKG_ADD_ARCH="i386"
|
2019-03-19 08:43:37 +01:00
|
|
|
export BITCOIN_CONFIG="--enable-gui --enable-reduce-exports --disable-miner"
|
2018-07-12 15:28:59 +02:00
|
|
|
export DIRECT_WINE_EXEC_TESTS=true
|
|
|
|
elif [ "$BUILD_TARGET" = "linux32" ]; then
|
|
|
|
export HOST=i686-pc-linux-gnu
|
2021-11-30 12:13:18 +01:00
|
|
|
export BITCOIN_CONFIG="--enable-zmq --disable-bip70 --enable-reduce-exports --enable-crash-hooks"
|
2018-07-12 15:28:59 +02:00
|
|
|
export USE_SHELL="/bin/dash"
|
|
|
|
export PYZMQ=true
|
|
|
|
elif [ "$BUILD_TARGET" = "linux64" ]; then
|
|
|
|
export HOST=x86_64-unknown-linux-gnu
|
2019-03-25 17:24:24 +01:00
|
|
|
export DEP_OPTS="NO_UPNP=1 DEBUG=1"
|
2021-11-30 12:13:18 +01:00
|
|
|
export BITCOIN_CONFIG="--enable-zmq --enable-reduce-exports --enable-crash-hooks --with-sanitizers=undefined"
|
2020-10-22 19:45:27 +02:00
|
|
|
export CPPFLAGS="-DDEBUG_LOCKORDER -DENABLE_DASH_DEBUG -DARENA_DEBUG"
|
2018-07-12 15:28:59 +02:00
|
|
|
export PYZMQ=true
|
2021-04-28 16:44:01 +02:00
|
|
|
elif [ "$BUILD_TARGET" = "linux64_cxx17" ]; then
|
|
|
|
export HOST=x86_64-unknown-linux-gnu
|
|
|
|
export DEP_OPTS="NO_UPNP=1 DEBUG=1"
|
2021-11-30 12:13:18 +01:00
|
|
|
export BITCOIN_CONFIG="--enable-zmq --enable-reduce-exports --enable-crash-hooks --enable-c++17 --enable-suppress-external-warnings --enable-werror --with-sanitizers=undefined"
|
2021-04-28 16:44:01 +02:00
|
|
|
export CPPFLAGS="-DDEBUG_LOCKORDER -DENABLE_DASH_DEBUG -DARENA_DEBUG"
|
|
|
|
export PYZMQ=true
|
2018-08-27 11:06:54 +02:00
|
|
|
export RUN_INTEGRATIONTESTS=false
|
2018-07-12 15:28:59 +02:00
|
|
|
elif [ "$BUILD_TARGET" = "linux64_nowallet" ]; then
|
|
|
|
export HOST=x86_64-unknown-linux-gnu
|
|
|
|
export DEP_OPTS="NO_WALLET=1"
|
2021-11-30 12:13:18 +01:00
|
|
|
export BITCOIN_CONFIG="--enable-reduce-exports"
|
2018-07-12 15:28:59 +02:00
|
|
|
elif [ "$BUILD_TARGET" = "linux64_release" ]; then
|
|
|
|
export HOST=x86_64-unknown-linux-gnu
|
2019-03-25 17:24:24 +01:00
|
|
|
export DEP_OPTS="NO_UPNP=1"
|
2021-11-30 12:13:18 +01:00
|
|
|
export BITCOIN_CONFIG="--enable-zmq --enable-glibc-back-compat --enable-reduce-exports LDFLAGS=-static-libstdc++"
|
2018-07-12 15:28:59 +02:00
|
|
|
export PYZMQ=true
|
|
|
|
elif [ "$BUILD_TARGET" = "mac" ]; then
|
2021-10-02 05:09:55 +02:00
|
|
|
export HOST=x86_64-apple-darwin19
|
2021-09-01 16:23:35 +02:00
|
|
|
export BITCOIN_CONFIG="--enable-gui --enable-reduce-exports --disable-miner --enable-werror"
|
2021-08-26 09:46:53 +02:00
|
|
|
export XCODE_VERSION=11.3.1
|
|
|
|
export XCODE_BUILD_ID=11C505
|
2018-06-13 19:21:00 +02:00
|
|
|
export GOAL="all deploy"
|
2018-08-27 11:06:54 +02:00
|
|
|
export RUN_UNITTESTS=false
|
|
|
|
export RUN_INTEGRATIONTESTS=false
|
2018-07-12 15:28:59 +02:00
|
|
|
fi
|