Skip to content

Commit 8f0aacb

Browse files
authored
Make more disk space by removing unused software (#537)
1 parent f9d08ac commit 8f0aacb

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

.github/workflows/e2e.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,18 @@ jobs:
1919
name: End-to-end
2020
runs-on: ubuntu-latest
2121
steps:
22+
- name: Free up some disk space
23+
run: |
24+
echo "Available storage before:"
25+
sudo df -h
26+
echo
27+
sudo rm -rf /usr/share/dotnet
28+
sudo rm -rf /usr/local/lib/android
29+
sudo rm -rf /opt/ghc
30+
sudo rm -rf /opt/hostedtoolcache/CodeQL
31+
echo "Available storage after:"
32+
sudo df -h
33+
echo
2234
- name: Checkout repo
2335
uses: actions/checkout@v2
2436
- name: Cache ICU4C binary versions

0 commit comments

Comments
 (0)