Skip to content

Commit

Permalink
Clean disk
Browse files Browse the repository at this point in the history
  • Loading branch information
mczyz-antmicro committed Jan 25, 2024
1 parent 7349e99 commit 3c73e77
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,15 @@ jobs:
env:
DEBIAN_FRONTEND: "noninteractive"
steps:
- name: Increase build space
run: |
echo "Before cleanup"
df -H
rm -rf /usr/share/dotnet/*
rm -rf /usr/local/lib/android/*
rm -rf /opt/ghc/*
echo "After cleanup"
df -H
- name: install chipyard
id: install_chipyard
run: |
Expand All @@ -39,6 +48,10 @@ jobs:
runs-on: ubuntu-latest
container:
image: ghcr.io/antmicro/megaboom-cpu-benchmarking:latest
volumes:
- /usr/share/dotnet:/usr/share/dotnet
- /usr/local/lib/android:/usr/local/lib/android
- /opt/ghc:/opt/ghc
defaults:
run:
shell: bash
Expand All @@ -50,6 +63,15 @@ jobs:
env:
DEBIAN_FRONTEND: "noninteractive"
steps:
- name: Increase build space
run: |
echo "Before cleanup"
df -H
rm -rf /usr/share/dotnet/*
rm -rf /usr/local/lib/android/*
rm -rf /opt/ghc/*
echo "After cleanup"
df -H
- name: Download artifact
uses: actions/download-artifact@v3
with:
Expand Down

0 comments on commit 3c73e77

Please sign in to comment.