We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7b4e2d3 commit ccd824aCopy full SHA for ccd824a
.github/workflows/pr-e2e-tests.yaml
@@ -51,10 +51,17 @@ jobs:
51
steps:
52
- name: Check out repository code
53
uses: actions/checkout@v4
54
- - name: Docker Prune
+ - name: Free up disk space (ubuntu-latest)
55
run: |
56
- docker system prune -af
57
- docker volume prune -f
+ sudo rm -rf /usr/local/lib/android \
+ /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
65
- name: Set up Python ${{ matrix.python-version }}
66
uses: actions/setup-python@v5
67
with:
0 commit comments