Fixed CI (clean up runner in CI) (#276)
Some checks failed
ci / build (push) Has been cancelled

(cherry picked from commit bc85754fa08b96d5de18ede800742345dda97243)
This commit is contained in:
Tom Rochette 2026-01-16 21:56:41 -05:00 committed by Alex Duchesne
parent d9b0c17a9f
commit 4ced120669

View File

@ -1,6 +1,6 @@
name: ci
on:
on:
workflow_dispatch: # Start a workflow
push:
@ -9,6 +9,13 @@ jobs:
runs-on: ubuntu-latest
steps:
# Remove ~18 GiB of preinstalled software to have more disk space during the build
- name: Cleanup runner
run: |
df -h
sudo rm -rf /opt/microsoft /usr/local/.ghcup /usr/local/julia* /usr/share/dotnet /usr/share/swift /usr/lib/llvm*
df -h
- name: Checkout repository
uses: actions/checkout@v4