From fa1632eecf5859af975102bb827a2a6f1dc161b2 Mon Sep 17 00:00:00 2001 From: MarcoFalke <*~=`'#}+{/-|&$^_@721217.xyz> Date: Wed, 12 Nov 2025 09:52:38 +0100 Subject: [PATCH] ci: Enable experimental kernel stuff in mac-cross tasks Base the task on --preset=dev-mode to ensure maximal coverage and add the following: bitcoin-chainstate (experimental) ... ON libbitcoinkernel (experimental) ..... ON kernel-test (experimental) .......... ON USDT remains explicitly disabled. --- ci/test/00_setup_env_mac_cross.sh | 6 +++++- ci/test/00_setup_env_mac_cross_intel.sh | 6 +++++- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/ci/test/00_setup_env_mac_cross.sh b/ci/test/00_setup_env_mac_cross.sh index c7de0334721..5b33c127f04 100755 --- a/ci/test/00_setup_env_mac_cross.sh +++ b/ci/test/00_setup_env_mac_cross.sh @@ -17,4 +17,8 @@ export XCODE_BUILD_ID=15A240d export RUN_UNIT_TESTS=false export RUN_FUNCTIONAL_TESTS=false export GOAL="deploy" -export BITCOIN_CONFIG="-DBUILD_GUI=ON -DBUILD_KERNEL_LIB=ON -DREDUCE_EXPORTS=ON" +export BITCOIN_CONFIG="\ + --preset=dev-mode \ + -DWITH_USDT=OFF \ + -DREDUCE_EXPORTS=ON \ +" diff --git a/ci/test/00_setup_env_mac_cross_intel.sh b/ci/test/00_setup_env_mac_cross_intel.sh index 535b801bf56..28eb7a09bd7 100755 --- a/ci/test/00_setup_env_mac_cross_intel.sh +++ b/ci/test/00_setup_env_mac_cross_intel.sh @@ -17,4 +17,8 @@ export XCODE_BUILD_ID=15A240d export RUN_UNIT_TESTS=false export RUN_FUNCTIONAL_TESTS=false export GOAL="deploy" -export BITCOIN_CONFIG="-DBUILD_GUI=ON -DREDUCE_EXPORTS=ON" +export BITCOIN_CONFIG="\ + --preset=dev-mode \ + -DWITH_USDT=OFF \ + -DREDUCE_EXPORTS=ON \ +"