What changed, and why it matters
This commit simply adds a new automated testing job to Bitcoin Core's GitHub Actions CI configuration. It runs a build test for a RISC-V 32-bit bare-metal target using a static libbitcoin_consensus library. There is no code change to Bitcoin Core itself, no user-facing behavior change, and no security fix or vulnerability introduced.
No security action needed. This is a routine CI/infrastructure change. Reviewers may optionally verify the referenced setup script is present and the runner labels are correct.
Security signals we found
No strong security signals were identified.
Evidence from the diff
The diff adds one matrix entry to .github/workflows/ci.yml under the existing CI job list. It references a setup script (00_setup_env_riscv_bare_cross.sh) and uses standard GitHub-hosted/self-hosted runners with a 120-minute timeout. No application code, build scripts, dependencies, secrets, or permissions are modified.
Changed components
.github/workflows/ci.ymlInspect captured patch +6 / −0
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index bf8da3b0..1123b4aa 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -523,6 +523,12 @@ jobs:
timeout-minutes: 120
file-env: './ci/test/00_setup_env_native_msan.sh'
+ - name: 'riscv32 bare metal, static libbitcoin_consensus'
+ warp-runner: 'warp-ubuntu-latest-x64-16x'
+ fallback-runner: 'ubuntu-latest'
+ timeout-minutes: 120
+ file-env: './ci/test/00_setup_env_riscv_bare_cross.sh'
+
steps:
- *ANNOTATION_PR_NUMBER
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.