ci: Move --usecli --extended from i386 task to alpine task
What changed, and why it matters
This commit simply moves some test command-line flags from one continuous integration (CI) test job to another. It does not change any production code, wallet logic, networking, or anything users interact with. There is no security issue here.
No security action required. This is a routine CI maintenance change.
Security signals we found
No strong security signals were identified.
Evidence from the diff
The patch removes TEST_RUNNER_EXTRA="--v2transport --usecli --extended" from the i686_no_ipc CI environment and adds the same variable to the native_alpine_musl CI environment. This is a CI configuration shuffle for functional test coverage; it does not alter Bitcoin Core source code, build options, or runtime behavior.
Changed components
ci/test/00_setup_env_i686_no_ipc.shci/test/00_setup_env_native_alpine_musl.shInspect captured patch +1 / −1
diff --git a/ci/test/00_setup_env_i686_no_ipc.sh b/ci/test/00_setup_env_i686_no_ipc.sh
index 90e9d7c9..93d5ab74 100755
--- a/ci/test/00_setup_env_i686_no_ipc.sh
+++ b/ci/test/00_setup_env_i686_no_ipc.sh
@@ -15,7 +15,6 @@ export PACKAGES="llvm clang g++-multilib"
export DEP_OPTS="DEBUG=1 NO_IPC=1"
export GOAL="install"
export CI_LIMIT_STACK_SIZE=1
-export TEST_RUNNER_EXTRA="--v2transport --usecli --extended"
export BITCOIN_CONFIG="\
--preset=dev-mode \
-DENABLE_IPC=OFF \
diff --git a/ci/test/00_setup_env_native_alpine_musl.sh b/ci/test/00_setup_env_native_alpine_musl.sh
index e42cb4a3..3ab56159 100755
--- a/ci/test/00_setup_env_native_alpine_musl.sh
+++ b/ci/test/00_setup_env_native_alpine_musl.sh
@@ -17,4 +17,5 @@ export BITCOIN_CONFIG="\
-DREDUCE_EXPORTS=ON \
-DCMAKE_BUILD_TYPE=Debug \
"
+export TEST_RUNNER_EXTRA="--v2transport --usecli --extended"
export BITCOIN_CMD="bitcoin -m" # Used in functional tests
Why this scored 15/100
Community notes
Notes can correct, qualify, or add evidence to the AI analysis. Every note shown here has been validated by a human moderator.
The AI analysis stands alone for now. Submit a note if you can add evidence or important context.