Skip to content
Merged
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
13 changes: 12 additions & 1 deletion .github/workflows/pixi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -135,9 +135,20 @@ jobs:
pixi run --skip-deps build
echo "****** df -h / -- post build"
df -h /

- name: Free disk space after build
shell: bash
run: |
# Remove object files and static libraries (not needed for testing)
find build -type f -name "*.o" -delete
find build -type f -name "*.a" -delete
echo "****** df -h / -- post .o .a cleanup"
# Remove downloaded data tarballs (already extracted)
rm -f InsightData-*.tar.gz
# Remove extracted source tarball directory
rm -rf InsightToolkit-${{ env.ExternalDataVersion }}
# Trim ccache to stay within CCACHE_MAXSIZE and remove orphaned entries
ccache --cleanup 2>/dev/null || true
echo "****** df -h / -- post cleanup"
df -h /

- name: Test
Expand Down
Loading