Skip to content

Commit 723f79a

Browse files
Merge pull request #9337 from rabbitmq/rin/github-actions-fix-no-space-left
Try to avoid running out of space in the OCI workflow in actions
2 parents 41148c9 + f2a5eeb commit 723f79a

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

.github/workflows/oci.yaml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,21 @@ jobs:
3838
- image_tag_suffix: otp-max-bazel
3939
otp_version_id: 26
4040
steps:
41+
- name: Free Disk Space (Ubuntu)
42+
uses: jlumbroso/free-disk-space@main
43+
with:
44+
# this might remove tools that are actually needed,
45+
# if set to "true" but frees about 6 GB
46+
tool-cache: false
47+
# all of these default to true, but feel free to set to
48+
# "false" if necessary for your workflow
49+
android: true
50+
dotnet: true
51+
haskell: true
52+
large-packages: true
53+
docker-images: false
54+
swap-storage: true
55+
4156
- name: Checkout
4257
uses: actions/checkout@v4
4358

0 commit comments

Comments
 (0)