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 968838c commit c6dbaadCopy full SHA for c6dbaad
.github/workflows/ci.yml
@@ -15,6 +15,34 @@ jobs:
15
check:
16
runs-on: ubuntu-latest
17
steps:
18
+ - name: Free disk space
19
+ run: |
20
+ df -h
21
+
22
+ to_delete=(
23
+ "/lib/firefox"
24
+ "/lib/google-cloud-sdk"
25
+ "/lib/jvm"
26
+ "/lib/llvm-16"
27
+ "/lib/llvm-17"
28
+ "/opt/az"
29
+ "/opt/google"
30
+ "/opt/hostedtoolcache/CodeQL"
31
+ "/opt/hostedtoolcache/PyPy"
32
+ "/opt/hostedtoolcache/Ruby"
33
+ "/opt/hostedtoolcache/go"
34
+ "/opt/hostedtoolcache/node"
35
+ "/opt/microsoft"
36
+ "/opt/pipx"
37
+ "/usr/share/swift"
38
+ )
39
+ for d in "${to_delete[@]}"; do
40
+ echo "delete $d"
41
+ sudo rm -rf "$d"
42
+ done
43
44
45
46
- name: Checkout
47
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
48
with:
0 commit comments