Skip to content

Commit becf06c

Browse files
authored
ci: free up more spaces for release-nightly workflow (#862)
since aio would need more spaces (from 25GB free to 46GB) error ref: https://github.com/hyperdxio/hyperdx/actions/runs/15283422240/job/42987754223
1 parent d63deed commit becf06c

File tree

2 files changed

+30
-0
lines changed

2 files changed

+30
-0
lines changed

.github/workflows/release-nightly.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,21 @@ jobs:
2323
- release-local-nightly
2424
- release-otel-collector-nightly
2525
steps:
26+
- name: Free Disk Space (Ubuntu)
27+
uses: jlumbroso/free-disk-space@main
28+
with:
29+
# this might remove tools that are actually needed,
30+
# if set to "true" but frees about 6 GB
31+
tool-cache: false
32+
docker-images: false
33+
34+
# all of these default to true, but feel free to set to
35+
# "false" if necessary for your workflow
36+
android: true
37+
dotnet: true
38+
haskell: true
39+
large-packages: true
40+
swap-storage: true
2641
- name: Checkout
2742
uses: actions/checkout@v4
2843
- name: Set up QEMU

.github/workflows/release.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,21 @@ jobs:
5555
- release-local
5656
- release-otel-collector
5757
steps:
58+
- name: Free Disk Space (Ubuntu)
59+
uses: jlumbroso/free-disk-space@main
60+
with:
61+
# this might remove tools that are actually needed,
62+
# if set to "true" but frees about 6 GB
63+
tool-cache: false
64+
docker-images: false
65+
66+
# all of these default to true, but feel free to set to
67+
# "false" if necessary for your workflow
68+
android: true
69+
dotnet: true
70+
haskell: true
71+
large-packages: true
72+
swap-storage: true
5873
- name: Checkout
5974
uses: actions/checkout@v4
6075
- name: Set up QEMU

0 commit comments

Comments
 (0)