CI: add more output to apt-get commands, to try to determine source of random delays.
What changed, and why it matters
This commit only changes a CI (continuous integration) setup script to add debugging output to package installation commands. It is not a security fix and does not change any production code, wallet logic, or network behavior. The change is purely operational: removing the quiet flag and adding apt debug flags to diagnose why CI builds sometimes hang.
No security action needed. This is a CI debugging change; review and merge through normal CI maintenance process.
Security signals we found
No strong security signals were identified.
Evidence from the diff
The patch modifies .github/scripts/setup.sh to remove -qq (quiet) flags from apt-get update and apt-get install, and adds apt debug options (Debug::pkgProblemResolver, Debug::Acquire::http/https/gpgv). The stated goal is to diagnose 30-minute timeouts in CI. No cryptographic, networking, or consensus code is touched.
Changed components
.github/scripts/setup.shInspect captured patch +8 / −3
diff --git a/.github/scripts/setup.sh b/.github/scripts/setup.sh
index a719c520..715a61da 100755
--- a/.github/scripts/setup.sh
+++ b/.github/scripts/setup.sh
@@ -4,9 +4,14 @@ export DEBIAN_FRONTEND=noninteractive
export RUST_VERSION=stable
sudo useradd -ms /bin/bash tester
-sudo apt-get update -qq
-
-sudo apt-get -qq install --no-install-recommends --allow-unauthenticated -yy \
+sudo apt-get update
+
+# Sometimes this command stalls, so I added debug flags.
+sudo apt-get install --no-install-recommends --allow-unauthenticated -yy \
+ -o Debug::pkgProblemResolver=yes \
+ -o Debug::Acquire::http=true \
+ -o Debug::Acquire::https=true \
+ -o Debug::Acquire::gpgv=true \
autoconf \
automake \
binfmt-support \
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.