aboutsummaryrefslogtreecommitdiff
path: root/ci/test/00_setup_env_native_nowallet_libbitcoinkernel.sh
diff options
context:
space:
mode:
authorMarcoFalke <*~=`'#}+{/-|&$^_@721217.xyz>2023-01-17 21:55:37 +0100
committerMarcoFalke <*~=`'#}+{/-|&$^_@721217.xyz>2023-01-18 12:59:11 +0100
commitdddd462137a85225955d4c2bcdb52e1e4235bff0 (patch)
treebc94c7a0a78f92485e4bd314c8d14f17cb7f3232 /ci/test/00_setup_env_native_nowallet_libbitcoinkernel.sh
parent500f25d88037e3a48bc90fbdb90fd59ee335acdd (diff)
Bump minimum python version to 3.7
Diffstat (limited to 'ci/test/00_setup_env_native_nowallet_libbitcoinkernel.sh')
-rwxr-xr-xci/test/00_setup_env_native_nowallet_libbitcoinkernel.sh6
1 files changed, 4 insertions, 2 deletions
diff --git a/ci/test/00_setup_env_native_nowallet_libbitcoinkernel.sh b/ci/test/00_setup_env_native_nowallet_libbitcoinkernel.sh
index 96cea1be3e..08bb5d1eab 100755
--- a/ci/test/00_setup_env_native_nowallet_libbitcoinkernel.sh
+++ b/ci/test/00_setup_env_native_nowallet_libbitcoinkernel.sh
@@ -7,8 +7,10 @@
export LC_ALL=C.UTF-8
export CONTAINER_NAME=ci_native_nowallet_libbitcoinkernel
-export CI_IMAGE_NAME_TAG=ubuntu:18.04 # Use bionic to have one config run the tests in python3.6, see doc/dependencies.md
-export PACKAGES="python3-zmq clang-8 llvm-8 libc++abi-8-dev libc++-8-dev" # Use clang-8 to test C++17 compatibility, see doc/dependencies.md
+export CI_IMAGE_NAME_TAG=debian:buster
+# Use minimum supported python3.7 and clang-8, see doc/dependencies.md
+export PACKAGES="-t buster-backports python3-zmq clang-8 llvm-8 libc++abi-8-dev libc++-8-dev"
+export APPEND_APT_SOURCES_LIST="deb http://deb.debian.org/debian buster-backports main"
export DEP_OPTS="NO_WALLET=1 CC=clang-8 CXX='clang++-8 -stdlib=libc++'"
export GOAL="install"
export BITCOIN_CONFIG="--enable-reduce-exports CC=clang-8 CXX='clang++-8 -stdlib=libc++' --enable-experimental-util-chainstate --with-experimental-kernel-lib --enable-shared"