Skip to content

Commit

Permalink
fix: no space left while building
Browse files Browse the repository at this point in the history
  • Loading branch information
pluja committed Nov 21, 2023
1 parent 774b825 commit 9a01d84
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/docker-image-gpu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,14 @@ jobs:
runs-on: ubuntu-latest

steps:
- name: Free disk space
run: |
sudo docker rmi $(docker image ls -aq) >/dev/null 2>&1 || true
sudo rm -rf /usr/share/dotnet || true
sudo rm -rf "$AGENT_TOOLSDIRECTORY" || true
sudo rm -rf /usr/local/lib/android /opt/ghc /usr/local/share/powershell /usr/share/swift /usr/local/.ghcup /usr/lib/jvm || true
echo "some directories deleted"
- name: Checkout
uses: actions/checkout@v4

Expand Down

0 comments on commit 9a01d84

Please sign in to comment.