blvm-sdk 0.1.10

Bitcoin Commons software developer kit, governance infrastructure and composition framework for Bitcoin
Documentation
name: Cleanup Runner Disk (blvm-sdk)

on:
  schedule:
    - cron: '0 3 * * 0'
  workflow_dispatch:
    inputs:
      dry_run:
        description: 'Dry run (print what would be deleted, do not delete)'
        required: false
        type: boolean
        default: false

permissions:
  contents: read

jobs:
  cleanup:
    name: Cleanup self-hosted runner disk
    runs-on: [self-hosted, Linux, X64, builds]
    steps:
      - name: Report disk before
        run: df -h /

      - name: Remove CI build target dirs under /tmp/gh-blvm-sdk-build
        run: |
          DRY="${{ github.event.inputs.dry_run }}"
          BASE="/tmp/gh-blvm-sdk-build"
          if [ ! -d "$BASE" ]; then
            echo "No build dirs at $BASE"
            exit 0
          fi
          echo "=== run dirs under $BASE ==="
          find "$BASE" -mindepth 1 -maxdepth 1 -type d | while read -r dir; do
            SIZE=$(du -sh "$dir" 2>/dev/null | cut -f1)
            echo "  $dir ($SIZE)"
            if [ "$DRY" != "true" ]; then
              rm -rf "$dir"
            fi
          done
          if [ -d /tmp/gh-fuzz-blvm-sdk ]; then
            SIZE=$(du -sh /tmp/gh-fuzz-blvm-sdk 2>/dev/null | cut -f1)
            echo "  /tmp/gh-fuzz-blvm-sdk ($SIZE)"
            if [ "$DRY" != "true" ]; then
              rm -rf /tmp/gh-fuzz-blvm-sdk
            fi
          fi

      - name: Report disk after
        run: df -h /