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
11 changes: 11 additions & 0 deletions .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,17 @@ jobs:
restore-keys: taxonomies-
- name: build
run: make build container=backend
- name: Free disk space
run: |
echo "Before cleanup:"
df -h
docker system prune -f || true
sudo rm -rf /usr/local/lib/android || true
sudo rm -rf /opt/ghc || true
sudo rm -rf /usr/share/dotnet || true
sudo rm -rf /usr/local/share/boost || true
echo "After cleanup:"
df -h
- name: push backend image as artifact
uses: ishworkh/[email protected]
with:
Expand Down
Loading