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 dde0441 commit 2391295Copy full SHA for 2391295
.github/actions/setup/action.yml
@@ -12,6 +12,14 @@ inputs:
12
runs:
13
using: composite
14
steps:
15
+ - name: Remove unnecessary software to free up disk space
16
+ shell: bash
17
+ run: |
18
+ # inspired by https://github.com/easimon/maximize-build-space/blob/master/action.yml
19
+ df -h
20
+ sudo rm -rf /usr/share/dotnet /usr/local/lib/android /opt/ghc
21
22
+
23
- name: Install dependencies
24
run: cd ${{ inputs.kani_dir }} && ./scripts/setup/${{ inputs.os }}/install_deps.sh
25
shell: bash
0 commit comments