You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@groovy.apache.org by pa...@apache.org on 2022/10/19 11:57:07 UTC

[groovy] branch master updated: Try to avoid the "No space left on device" GitHub action errors

This is an automated email from the ASF dual-hosted git repository.

paulk pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/groovy.git


The following commit(s) were added to refs/heads/master by this push:
     new fac1284f1d Try to avoid the "No space left on device" GitHub action errors
fac1284f1d is described below

commit fac1284f1deb7726be6ec9c38106bb705c77f12c
Author: Paul King <pa...@asert.com.au>
AuthorDate: Wed Oct 19 21:56:44 2022 +1000

    Try to avoid the "No space left on device" GitHub action errors
---
 .github/workflows/groovy-build-dist.yml | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/.github/workflows/groovy-build-dist.yml b/.github/workflows/groovy-build-dist.yml
index 904bb4b0f5..26797657df 100644
--- a/.github/workflows/groovy-build-dist.yml
+++ b/.github/workflows/groovy-build-dist.yml
@@ -30,6 +30,10 @@ jobs:
     runs-on: ${{ matrix.os }}
     steps:
       - uses: actions/checkout@v3
+      - name: Free disk space
+        run: |
+          sudo rm -rf /usr/share/dotnet /usr/local/lib/android /opt/ghc
+          sudo apt-get clean -y >/dev/null 2>&1
       - name: Set up JDK
         uses: actions/setup-java@v3
         with: