diff options
author | deadprogram <[email protected]> | 2023-11-25 21:52:35 +0100 |
---|---|---|
committer | Ron Evans <[email protected]> | 2023-11-28 20:56:08 +0100 |
commit | f51029484a435a399e4481ac6e23c0d3f2eaefee (patch) | |
tree | 7c12d4bd6062f0259597b9f7133c3b5b8b4ea9ee /.github | |
parent | 03cfcbc17cb4cc3baa1c185809def9e3a2eb3771 (diff) | |
download | tinygo-f51029484a435a399e4481ac6e23c0d3f2eaefee.tar.gz tinygo-f51029484a435a399e4481ac6e23c0d3f2eaefee.zip |
builds: free space before doing docker build job
Signed-off-by: deadprogram <[email protected]>
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/docker.yml | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index 5ecfd2239..8716a806d 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -19,6 +19,14 @@ jobs: packages: write contents: read steps: + - name: Free Disk space + shell: bash + run: | + sudo rm -rf /usr/local/lib/android + sudo rm -rf /usr/share/dotnet + sudo rm -rf /opt/ghc + sudo rm -rf /usr/local/graalvm + sudo rm -rf /usr/local/share/boost - name: Check out the repo uses: actions/checkout@v3 with: |