Skip to content

Commit

Permalink
⚗️ try increasing swap space
Browse files Browse the repository at this point in the history
Signed-off-by: Joe Runde <[email protected]>
  • Loading branch information
joerunde committed May 21, 2024
1 parent 34ea951 commit 89630b8
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/actions/free-up-disk-space/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,3 +34,14 @@ runs:
docker system df
echo "Disk usage after pruning docker images:"
df -h
- name: "Increase swap space"
shell: bash
run: |
sudo swapon --show
sudo swapoff -a
sudo fallocate -l 8G /swapfile
sudo chmod 600 /swapfile
sudo mkswap /swapfile
sudo swapon /swapfile
sudo swapon --show

0 comments on commit 89630b8

Please sign in to comment.