00_setup_env_native_alpine_musl.sh raw

   1  #!/usr/bin/env bash
   2  #
   3  # Copyright (c) 2020-present The Bitcoin Core developers
   4  # Distributed under the MIT software license, see the accompanying
   5  # file COPYING or http://www.opensource.org/licenses/mit-license.php.
   6  
   7  export LC_ALL=C.UTF-8
   8  
   9  export CONTAINER_NAME=ci_native_alpine_musl
  10  export CI_IMAGE_NAME_TAG="mirror.gcr.io/alpine:3.24"
  11  export CI_BASE_PACKAGES="build-base musl-dev pkgconf curl ccache make ninja git python3-dev py3-pip which patch xz procps rsync util-linux bison e2fsprogs cmake dash linux-headers"
  12  export PIP_PACKAGES="--break-system-packages pyzmq pycapnp"
  13  export DEP_OPTS="DEBUG=1"
  14  export GOAL="install"
  15  export BITCOIN_CONFIG="\
  16   --preset=dev-mode \
  17   -DREDUCE_EXPORTS=ON \
  18   -DCMAKE_BUILD_TYPE=Debug \
  19  "
  20  export TEST_RUNNER_EXTRA="--v2transport --usecli --extended --exclude feature_dbcrash"  # Run extended tests under --usecli and --v2transport, but exclude the very slow dbcrash
  21  export BITCOIN_CMD="bitcoin -m" # Used in functional tests
  22