Skip to content

Commit 68cf38d

Browse files
Merge pull request #13 from LCAS/marc-hanheide-patch-1
Add disk space cleanup step in dev-container.yml
2 parents 0da088c + 349b571 commit 68cf38d

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

.github/workflows/dev-container.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,21 @@ jobs:
1212
build_devcontainer:
1313
runs-on: ubuntu-latest
1414
steps:
15+
- name: Free Disk Space (Ubuntu)
16+
uses: jlumbroso/free-disk-space@54081f138730dfa15788a46383842cd2f914a1be
17+
with:
18+
# this might remove tools that are actually needed,
19+
# if set to "true" but frees about 6 GB
20+
tool-cache: false
21+
22+
# all of these default to true, but feel free to set to
23+
# "false" if necessary for your workflow
24+
android: true
25+
dotnet: true
26+
haskell: true
27+
large-packages: true
28+
docker-images: true
29+
swap-storage: true
1530
- name: Checkout from github
1631
uses: actions/checkout@v3
1732
- name: extract the github reference

0 commit comments

Comments
 (0)