Skip to content

Commit

Permalink
try a job to clean up disk space on runner, because now we get 'Syste…
Browse files Browse the repository at this point in the history
…m.IO.IOException: No space left on device : '/home/runner/runners/2.311.0/_diag/Worker_...'
  • Loading branch information
indy-independence committed Jan 12, 2024
1 parent cedd1d7 commit 8740bb6
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/run-unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,26 @@ on:
workflow_dispatch:
pull_request:
jobs:
free-disk-space:
runs-on: ubuntu-latest
steps:

- name: Free Disk Space (Ubuntu)
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: false

# 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: false

docker-tests:
name: "Run unit tests in docker"
runs-on: ubuntu-latest
Expand Down

0 comments on commit 8740bb6

Please sign in to comment.