Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions .github/workflows/reusable_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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'
Expand Down