diff --git a/.github/workflows/reusable_build.yml b/.github/workflows/reusable_build.yml index d22542d1..e521738c 100644 --- a/.github/workflows/reusable_build.yml +++ b/.github/workflows/reusable_build.yml @@ -285,6 +285,12 @@ jobs: with: path: openwrt + - name: Provide information about disk usage before the build + if: always() + shell: su buildbot -c "sh -e {0}" + working-directory: openwrt + run: df -h . ; du -sh . + - name: Checkout packages feed if: inputs.include_feeds == true uses: actions/checkout@v4 @@ -684,6 +690,12 @@ jobs: name: ${{ inputs.target }}-${{ inputs.subtarget }}${{ inputs.testing == true && '-testing' || '' }}-logs path: "openwrt/logs" + - name: Provide information about disk usage after the build + if: always() + shell: su buildbot -c "sh -e {0}" + working-directory: openwrt + run: df -h . ; du -sh . + - name: Cleanup dl/build_dir/staging_dir to make some space working-directory: openwrt if: github.event_name == 'push'