Skip to content

Commit

Permalink
Free up disk space for CI
Browse files Browse the repository at this point in the history
  • Loading branch information
thewtex committed Aug 25, 2023
1 parent 28e8b78 commit 94eb2ae
Showing 1 changed file with 16 additions and 1 deletion.
17 changes: 16 additions & 1 deletion .github/workflows/wasm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,21 @@ jobs:
runs-on: ubuntu-22.04

steps:
- name: 'Free up disk space'
run: |
# Workaround for https://github.com/actions/virtual-environments/issues/709
df -h
sudo apt-get update
sudo apt-get remove -y '^dotnet-.*'
sudo apt-get remove -y '^llvm-.*'
sudo apt-get remove -y 'php.*'
sudo apt-get autoremove -y
sudo apt-get clean
sudo rm -rf "/usr/local/share/boost"
sudo rm -rf /usr/share/dotnet/
sudo rm -rf "$AGENT_TOOLSDIRECTORY"
df -h
- uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3.5.2

- uses: actions/setup-node@64ed1c7eab4cce3362f8c340dee64e5eaeef8f7c # v3.6.0
Expand Down Expand Up @@ -44,4 +59,4 @@ jobs:
working-directory: ./python/itkwasm-isic-superpixel-wasi
run: |
pip install hatch
hatch run test
hatch run test

0 comments on commit 94eb2ae

Please sign in to comment.