From a0a4259d50d668dbaf93632086b08ad3aff8f696 Mon Sep 17 00:00:00 2001 From: Ashwin Kumar Sivakumar Date: Thu, 13 Aug 2026 18:04:31 +0530 Subject: [PATCH] debug: test apt-get network access in isolation --- .forgejo/workflows/test.yaml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.forgejo/workflows/test.yaml b/.forgejo/workflows/test.yaml index 6fb29ae..6fbb70e 100644 --- a/.forgejo/workflows/test.yaml +++ b/.forgejo/workflows/test.yaml @@ -51,3 +51,11 @@ jobs: - name: Debug conditional step if: steps.check.outputs.run == 'true' run: echo "conditional step ran" + + - name: Debug apt-get + if: steps.check.outputs.run == 'true' + run: | + set -euo pipefail + apt-get update -qq + apt-get install -y -qq build-essential pkg-config + echo "apt-get done, cc: $(which cc)"