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 83e6426 commit e4ff24aCopy full SHA for e4ff24a
.github/workflows/python-package.yml
@@ -141,6 +141,22 @@ jobs:
141
runs-on: ${{ matrix.os }}
142
steps:
143
- uses: actions/checkout@v4
144
+ - name: Clean up disk space
145
+ run: |
146
+ echo "Disk space before cleanup:"
147
+ df -h
148
+
149
+ # These are the biggest disk space hogs.
150
+ sudo rm -rf \
151
+ /opt/hostedtoolcache/CodeQL \
152
+ /usr/lib/dotnet \
153
+ /usr/lib/jvm \
154
+ /usr/local/.ghcup \
155
+ /usr/local/lib/android \
156
+ /usr/share/swift
157
158
+ echo "Disk space after cleanup:"
159
160
- name: Build C++
161
run: bash .github/scripts/build-rocm.sh
162
env:
0 commit comments