Skip to content

Commit

Permalink
WIP: Debug CI failure
Browse files Browse the repository at this point in the history
  • Loading branch information
fjahr committed Sep 1, 2024
1 parent d2b364a commit 814d48a
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down

0 comments on commit 814d48a

Please sign in to comment.