Skip to content

Commit e024ecb

Browse files
authored
Merge pull request #7574 from tautschnig/bugfixes/coverage-ci
Free up additional disk space on GitHub runner
2 parents ec46ac8 + a4989b9 commit e024ecb

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

.github/workflows/pull-request-checks.yaml

+6
Original file line numberDiff line numberDiff line change
@@ -910,6 +910,12 @@ jobs:
910910
uses: actions/checkout@v3
911911
with:
912912
submodules: recursive
913+
- name: Remove unnecessary software to free up disk space
914+
run: |
915+
# inspired by https://github.com/easimon/maximize-build-space/blob/master/action.yml
916+
df -h
917+
sudo rm -rf /usr/share/dotnet /usr/local/lib/* /opt/*
918+
df -h
913919
- name: Download testing and coverage dependencies
914920
env:
915921
# This is needed in addition to -yq to prevent apt-get from asking for

0 commit comments

Comments
 (0)