Skip to content

Commit

Permalink
Free up additional disk space on GitHub runner (model-checking#2674)
Browse files Browse the repository at this point in the history
Co-authored-by: Zyad Hassan <[email protected]>
  • Loading branch information
tautschnig and zhassan-aws committed Aug 30, 2023
1 parent a109162 commit f454193
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 f454193

Please sign in to comment.