Skip to content

Commit

Permalink
Merge pull request #56 from razr/master-next
Browse files Browse the repository at this point in the history
use free-disk-space action
  • Loading branch information
razr authored Sep 23, 2024
2 parents a80c076 + f2c62aa commit b68d814
Showing 1 changed file with 15 additions and 6 deletions.
21 changes: 15 additions & 6 deletions .github/workflows/rpi4-kernel-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,12 +53,21 @@ jobs:
# Checks-out repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v3

- name: Get available space
run: |
sudo rm -rf /usr/local/lib/android
sudo rm -rf /usr/share/dotnet
cd /
df -H
- name: Free Disk Space
uses: jlumbroso/free-disk-space@main
with:
# this might remove tools that are actually needed,
# if set to "true" but frees about 6 GB
tool-cache: true

# all of these default to true, but feel free to set to
# "false" if necessary for your workflow
android: true
dotnet: true
haskell: true
large-packages: true
docker-images: false
swap-storage: true

- name: Print input params
run: |
Expand Down

0 comments on commit b68d814

Please sign in to comment.