From 814d48a2e8963c1da6a3d2c288cfbf46b26240fa Mon Sep 17 00:00:00 2001 From: Fabian Jahr Date: Sun, 1 Sep 2024 23:01:12 +0200 Subject: [PATCH] WIP: Debug CI failure --- .github/workflows/ci.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 482525f949dd6d..620b419c9c2875 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -261,6 +261,14 @@ jobs: - name: CI script run: ./ci/test_run_all.sh + - name: Debug ip_asn.h issue + if: failure() + run: | + echo "First 10 lines of init/ip_asn.h:" + head -n 10 ./build/src/init/ip_asn.h || echo "init/ip_asn.h not found" + echo "Last 10 lines of init/ip_asn.h:" + tail -n 10 ./build/src/init/ip_asn.h || echo "init/ip_asn.h not found" + - name: Save Ccache cache uses: actions/cache/save@v4 if: github.event_name != 'pull_request' && steps.ccache-cache.outputs.cache-hit != 'true'