Skip to content

Commit ccd824a

Browse files
committed
Fix PR e2e workflow - disk space
1 parent 7b4e2d3 commit ccd824a

File tree

1 file changed

+10
-3
lines changed

1 file changed

+10
-3
lines changed

.github/workflows/pr-e2e-tests.yaml

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,10 +51,17 @@ jobs:
5151
steps:
5252
- name: Check out repository code
5353
uses: actions/checkout@v4
54-
- name: Docker Prune
54+
- name: Free up disk space (ubuntu-latest)
5555
run: |
56-
docker system prune -af
57-
docker volume prune -f
56+
sudo rm -rf /usr/local/lib/android \
57+
/usr/share/dotnet \
58+
/opt/ghc \
59+
/opt/hostedtoolcache
60+
docker system prune -af || true
61+
docker volume prune -f || true
62+
docker builder prune -af || true
63+
sudo apt-get clean || true
64+
df -h
5865
- name: Set up Python ${{ matrix.python-version }}
5966
uses: actions/setup-python@v5
6067
with:

0 commit comments

Comments
 (0)