mirror of
https://github.com/daylinmorgan/oizys.git
synced 2024-12-22 18:30:43 -06:00
try to free up more space
This commit is contained in:
parent
95ec3edea6
commit
669d077694
1 changed files with 14 additions and 2 deletions
16
.github/workflows/build.yml
vendored
16
.github/workflows/build.yml
vendored
|
@ -29,8 +29,20 @@ jobs:
|
||||||
build:
|
build:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
# free up some space
|
# The default disk size of these runners is ~14GB
|
||||||
- run: sudo rm -rf /opt&
|
# Cleanup the disk, see upstream discussion https://github.com/actions/runner-images/issues/2840.
|
||||||
|
- name: Cleanup Disk Space
|
||||||
|
run: |
|
||||||
|
echo "Before removing files:"
|
||||||
|
df -h
|
||||||
|
sudo rm -rf /usr/share/dotnet
|
||||||
|
sudo rm -rf /opt/ghc
|
||||||
|
sudo rm -rf /opt
|
||||||
|
sudo rm -rf "/usr/local/share/boost"
|
||||||
|
sudo rm -rf "$AGENT_TOOLSDIRECTORY"
|
||||||
|
echo "After removing files:"
|
||||||
|
df -h
|
||||||
|
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
|
|
||||||
- uses: DeterminateSystems/nix-installer-action@main
|
- uses: DeterminateSystems/nix-installer-action@main
|
||||||
|
|
Loading…
Reference in a new issue