2019-08-15 22:51:31 +02:00
#!/usr/bin/env bash
#
2023-08-16 19:27:31 +02:00
# Copyright (c) 2019-2020 The Bitcoin Core developers
2019-08-15 22:51:31 +02: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
2020-02-10 14:50:29 +01:00
export CONTAINER_NAME = ci_native_qt5
2022-04-25 11:01:47 +02:00
export PACKAGES = "python3-zmq qtbase5-dev qttools5-dev-tools libdbus-1-dev libharfbuzz-dev"
2022-04-07 18:03:41 +02:00
export DEP_OPTS = "NO_UPNP=1 DEBUG=1"
2022-06-24 16:38:14 +02:00
# TODO: we have few rpcs that aren't covered by any test, re-enable the line below once it's fixed
2020-05-22 12:29:09 +02:00
# export TEST_RUNNER_EXTRA="--previous-releases --coverage --extended --exclude feature_pruning,feature_dbcrash" # Run extended tests so that coverage does not fail, but exclude the very slow dbcrash
2020-04-09 14:06:53 +02:00
export RUN_UNIT_TESTS_SEQUENTIAL = "true"
export RUN_UNIT_TESTS = "false"
2019-08-15 22:51:31 +02:00
export GOAL = "install"
2023-11-20 15:41:36 +01:00
export PREVIOUS_RELEASES_TO_DOWNLOAD = "v0.15.0.0 v0.16.1.1 v0.17.0.3 v18.2.2 v19.3.0 v20.0.1"
2023-08-23 13:28:58 +02:00
export BITCOIN_CONFIG = "--enable-zmq --enable-reduce-exports --disable-fuzz-binary LDFLAGS=-static-libstdc++"