Skip to content

Prevent CI “Default” job failures from runner disk exhaustion#2487

Closed
Copilot wants to merge 2 commits into
developfrom
copilot/fix-default-github-actions-job
Closed

Prevent CI “Default” job failures from runner disk exhaustion#2487
Copilot wants to merge 2 commits into
developfrom
copilot/fix-default-github-actions-job

Conversation

Copilot AI commented Jun 11, 2026

Copy link
Copy Markdown

The Default GitHub Actions job was failing during libconsensus.a archive creation with No space left on device. This change updates the workflow to reclaim runner disk space before dependency and project builds.

  • Root cause addressed

    • The Ubuntu runner’s default preinstalled toolchains consumed enough disk to cause archive/link failure in the Build (Default) step.
  • Workflow adjustment

    • Added a dedicated Free disk space step in .github/workflows/test.yml before dependency build.
    • Removes large unused preinstalled directories and prints current disk usage for quick observability in logs.
  • Change scope

    • Workflow-only change; no production/runtime code paths modified.
- name: Free disk space
  run: |
    sudo rm -rf /usr/local/lib/android /usr/share/dotnet /opt/ghc
    df -h

Copilot AI changed the title [WIP] Fix failing GitHub Actions job Default Prevent CI “Default” job failures from runner disk exhaustion Jun 11, 2026
Copilot AI requested a review from badrogger June 11, 2026 16:09
@badrogger badrogger closed this Jun 11, 2026
@github-actions github-actions Bot locked and limited conversation to collaborators Jun 11, 2026
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants