Skip to content

Commit

Permalink
Free up additional disk space on GitHub runner (#2674)
Browse files Browse the repository at this point in the history
Co-authored-by: Zyad Hassan <88045115+zhassan-aws@users.noreply.github.com>
  • Loading branch information
tautschnig and zhassan-aws authored Aug 18, 2023
1 parent dde0441 commit 2391295
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/actions/setup/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,14 @@ inputs:
runs:
using: composite
steps:
- name: Remove unnecessary software to free up disk space
shell: bash
run: |
# inspired by https://github.com/easimon/maximize-build-space/blob/master/action.yml
df -h
sudo rm -rf /usr/share/dotnet /usr/local/lib/android /opt/ghc
df -h
- name: Install dependencies
run: cd ${{ inputs.kani_dir }} && ./scripts/setup/${{ inputs.os }}/install_deps.sh
shell: bash
Expand Down

0 comments on commit 2391295

Please sign in to comment.