What changed, and why it matters
This is a routine GitHub Actions CI workflow change. It adds a build flag to disable an optional Bitcoin Core multiprocess feature that the project does not use, so that automated tests against the latest bitcoind version can compile without needing an extra dependency (capnproto). There is no change to Eclair's production code, no user-facing behavior change, and no security relevance.
No security action required. Treat as normal maintenance/CI fix.
Security signals we found
No strong security signals were identified.
Evidence from the diff
The commit modifies .github/workflows/latest-bitcoind.yml, changing the cmake invocation for building Bitcoin Core in CI from cmake -B build -DWITH_ZMQ=ON -DBUILD_SHARED_LIBS=OFF -DBUILD_TESTS=OFF -DBUILD_BENCH=OFF to the same command plus -DENABLE_IPC=OFF. This disables the inter-process communication (multiprocess) architecture, which requires capnproto. The change only affects CI test builds and does not alter Eclair’s runtime code, configuration, or threat model.
Changed components
.github/workflows/latest-bitcoind.ymlInspect captured patch +1 / −1
diff --git a/.github/workflows/latest-bitcoind.yml b/.github/workflows/latest-bitcoind.yml
index 0224c5a..cd5f7ae 100644
--- a/.github/workflows/latest-bitcoind.yml
+++ b/.github/workflows/latest-bitcoind.yml
@@ -26,7 +26,7 @@ jobs:
working-directory: ./bitcoin
- name: Init and configure cmake build
- run: cmake -B build -DWITH_ZMQ=ON -DBUILD_SHARED_LIBS=OFF -DBUILD_TESTS=OFF -DBUILD_BENCH=OFF
+ run: cmake -B build -DWITH_ZMQ=ON -DBUILD_SHARED_LIBS=OFF -DBUILD_TESTS=OFF -DBUILD_BENCH=OFF -DENABLE_IPC=OFF
working-directory: ./bitcoin
- name: Build bitcoind
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.